summaryrefslogtreecommitdiffstats
path: root/googletest/include
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-08-31 14:57:16 (GMT)
committerGitHub <noreply@github.com>2018-08-31 14:57:16 (GMT)
commitd615eebd9f056ca32c65b6971116a964f1e86230 (patch)
treeb3d198082be63f1de097a2ab503aeb51db019706 /googletest/include
parent13c5230bbf2bd3404e48b7aee33a9af2514d1b9a (diff)
parent4005388b3b48e29e91ccd648addaa10ded1b5bf0 (diff)
downloadgoogletest-d615eebd9f056ca32c65b6971116a964f1e86230.zip
googletest-d615eebd9f056ca32c65b6971116a964f1e86230.tar.gz
googletest-d615eebd9f056ca32c65b6971116a964f1e86230.tar.bz2
Merge branch 'master' into fix-clang-warningsrefs/pull/1433/head
Diffstat (limited to 'googletest/include')
-rw-r--r--googletest/include/gtest/gtest-typed-test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/gtest-typed-test.h b/googletest/include/gtest/gtest-typed-test.h
index ea31567..74bce46 100644
--- a/googletest/include/gtest/gtest-typed-test.h
+++ b/googletest/include/gtest/gtest-typed-test.h
@@ -96,7 +96,7 @@ TYPED_TEST(FooTest, HasPropertyA) { ... }
// static std::string GetName(int) {
// if (std::is_same<T, char>()) return "char";
// if (std::is_same<T, int>()) return "int";
-// if (std::is_same<T, unsigned int>()) return "unsigned_int";
+// if (std::is_same<T, unsigned int>()) return "unsignedInt";
// }
// };
// TYPED_TEST_CASE(FooTest, MyTypes, MyTypeNames);