summaryrefslogtreecommitdiffstats
path: root/googletest/test/googletest-param-test-invalid-name1-test_.cc
diff options
context:
space:
mode:
Diffstat (limited to 'googletest/test/googletest-param-test-invalid-name1-test_.cc')
-rw-r--r--googletest/test/googletest-param-test-invalid-name1-test_.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/googletest/test/googletest-param-test-invalid-name1-test_.cc b/googletest/test/googletest-param-test-invalid-name1-test_.cc
index 5a95155..955d699 100644
--- a/googletest/test/googletest-param-test-invalid-name1-test_.cc
+++ b/googletest/test/googletest-param-test-invalid-name1-test_.cc
@@ -36,10 +36,10 @@ class DummyTest : public ::testing::TestWithParam<const char *> {};
TEST_P(DummyTest, Dummy) {
}
-INSTANTIATE_TEST_CASE_P(InvalidTestName,
- DummyTest,
- ::testing::Values("InvalidWithQuotes"),
- ::testing::PrintToStringParamName());
+INSTANTIATE_TEST_SUITE_P(InvalidTestName,
+ DummyTest,
+ ::testing::Values("InvalidWithQuotes"),
+ ::testing::PrintToStringParamName());
} // namespace