Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit 1cce510

Browse files
authored
Fix test
1 parent b861225 commit 1cce510

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

aws_common/test/sdk_utils/client_configuration_provider_test.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ INSTANTIATE_TEST_CASE_P(
139139

140140
int main(int argc, char ** argv)
141141
{
142+
Aws::SDKOptions options;
143+
Aws::InitAPI(options);
142144
testing::InitGoogleTest(&argc, argv);
143-
return RUN_ALL_TESTS();
145+
auto ret = RUN_ALL_TESTS();
146+
Aws::ShutdownAPI(options);
147+
return ret;
144148
}

0 commit comments

Comments
 (0)