diff options
author | Abseil Team <absl-team@google.com> | 2020-01-15 19:14:57 (GMT) |
---|---|---|
committer | vslashg <gfalcon@google.com> | 2020-01-16 18:56:21 (GMT) |
commit | 8b4817e3df3746a20502a84580f661ac448821be (patch) | |
tree | c7988e3b347ad1b1e3f86e62d2afc64e3bf20ba9 /googletest/src | |
parent | 5336106b66db4726174da8c2bdd5d4e80c55897e (diff) | |
download | googletest-8b4817e3df3746a20502a84580f661ac448821be.zip googletest-8b4817e3df3746a20502a84580f661ac448821be.tar.gz googletest-8b4817e3df3746a20502a84580f661ac448821be.tar.bz2 |
Googletest export
Correct the spelling of PARAMETERIZED.
PiperOrigin-RevId: 289897278
Diffstat (limited to 'googletest/src')
-rw-r--r-- | googletest/src/gtest.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc index 8e68c04..1f8a68e 100644 --- a/googletest/src/gtest.cc +++ b/googletest/src/gtest.cc @@ -472,7 +472,7 @@ void InsertSyntheticTestCase(const std::string &name, CodeLocation location) { "To suppress this error for this test suite, insert the following line " "(in a non-header) in the namespace it is defined in:" "\n\n" - "GTEST_ALLOW_UNINSTANTIATED_PARAMTERIZED_TEST(" + name + ");"; + "GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(" + name + ");"; std::string full_name = "UninstantiatedParamaterizedTestSuite<" + name + ">"; RegisterTest( // @@ -533,7 +533,8 @@ void TypeParameterizedTestSuiteRegistry::CheckForInstantiations() { "To suppress this error for this test suite, insert the following line " "(in a non-header) in the namespace it is definedin in:" "\n\n" - "GTEST_ALLOW_UNINSTANTIATED_PARAMTERIZED_TEST(" + testcase.first + ");"; + "GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(" + + testcase.first + ");"; std::string full_name = "UninstantiatedTypeParamaterizedTestSuite<" + testcase.first + ">"; |