diff options
author | misterg <misterg@google.com> | 2019-01-11 13:57:36 -0500 |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-01-11 13:59:22 -0500 |
commit | 0599a7b8410dc5cfdb477900b280475ae775d7f9 (patch) | |
tree | 4ec1e2f02276fdee489d60e6420561b801d6aa4f /googletest/test/googletest-param-test-invalid-name1-test_.cc | |
parent | 2edadcedf350b175211642704d1ef5f739a31ca9 (diff) | |
download | googletest-0599a7b8410dc5cfdb477900b280475ae775d7f9.tar.gz googletest-0599a7b8410dc5cfdb477900b280475ae775d7f9.tar.bz2 googletest-0599a7b8410dc5cfdb477900b280475ae775d7f9.zip |
Googletest export
Change tests to use new Test Suite API
PiperOrigin-RevId: 228908894
Diffstat (limited to 'googletest/test/googletest-param-test-invalid-name1-test_.cc')
-rw-r--r-- | googletest/test/googletest-param-test-invalid-name1-test_.cc | 8 |
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 5a95155b..955d6999 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 |