aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/src
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2020-01-15 14:14:57 -0500
committervslashg <gfalcon@google.com>2020-01-16 13:56:21 -0500
commit8b4817e3df3746a20502a84580f661ac448821be (patch)
treec7988e3b347ad1b1e3f86e62d2afc64e3bf20ba9 /googletest/src
parent5336106b66db4726174da8c2bdd5d4e80c55897e (diff)
downloadgoogletest-8b4817e3df3746a20502a84580f661ac448821be.tar.gz
googletest-8b4817e3df3746a20502a84580f661ac448821be.tar.bz2
googletest-8b4817e3df3746a20502a84580f661ac448821be.zip
Googletest export
Correct the spelling of PARAMETERIZED. PiperOrigin-RevId: 289897278
Diffstat (limited to 'googletest/src')
-rw-r--r--googletest/src/gtest.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc
index 8e68c04e..1f8a68e3 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 + ">";