Skip to content

Commit

Permalink
Merge pull request #263 from awslabs/fix-unit-test
Browse files Browse the repository at this point in the history
Fix unit test when log level env variable is not set
  • Loading branch information
sirknightj authored Nov 4, 2024
2 parents 7d80740 + 6b0f4be commit 38550d9
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 38550d9

Please sign in to comment.