Skip to content

Commit 2f33bfd

Browse files
committed
fix msvc warning for unreachable test
1 parent aa1bc95 commit 2f33bfd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/aws-cpp-sdk-cloudfront-integration-tests/CloudfrontKeyValueStoreTest.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515

1616
#define TEST_PREFIX "IntegrationTest_"
1717

18-
class CloudfrontKeyValueStoreTest : public ::testing::Test
18+
//Test takes ~15 minutes, it is a manual test.
19+
class DISABLED_CloudfrontKeyValueStoreTest : public ::testing::Test
1920
{
2021

2122
public:
@@ -30,9 +31,8 @@ class CloudfrontKeyValueStoreTest : public ::testing::Test
3031
}
3132
};
3233

33-
TEST_F(CloudfrontKeyValueStoreTest, TestListKeysUsesSigV4A)
34+
TEST_F(DISABLED_CloudfrontKeyValueStoreTest, TestListKeysUsesSigV4A)
3435
{
35-
GTEST_SKIP() << "Test takes ~15 minutes, it is a manual test.";
3636

3737
Aws::String kvsArn;
3838

0 commit comments

Comments
 (0)