Skip to content

Commit

Permalink
Fix unit test when log level env variable is not set
Browse files Browse the repository at this point in the history
  • Loading branch information
sirknightj committed Nov 1, 2024
1 parent 6eb5b31 commit 6b0f4be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tst/client/ClientTestFixture.h
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ class ClientTestBase : public ::testing::Test {

void initTestMembers()
{
UINT32 logLevel = 0;
UINT32 logLevel = LOG_LEVEL_WARN;
STATUS retStatus = STATUS_SUCCESS;
auto logLevelStr = GETENV("AWS_KVS_LOG_LEVEL");
if (logLevelStr != NULL) {
Expand Down

0 comments on commit 6b0f4be

Please sign in to comment.