summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2019-04-02 04:43:26 -0400
committerGennadiy Civil <misterg@google.com>2019-04-03 15:14:17 -0400
commitc9e0aed90b5c90cf3f88413da1ef07d925f025e1 (patch)
tree57b9c91ce904b9f2219ce62c1edcbec960c74844
parentb617b277186e03b1065ac6d43912b1c4147c2982 (diff)
downloadgoogletest-c9e0aed90b5c90cf3f88413da1ef07d925f025e1.tar.gz
googletest-c9e0aed90b5c90cf3f88413da1ef07d925f025e1.zip
Googletest export
Typos: "more then" -> "more than". PiperOrigin-RevId: 241483698
-rw-r--r--googletest/include/gtest/gtest-param-test.h2
-rw-r--r--googletest/include/gtest/internal/gtest-param-util.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/googletest/include/gtest/gtest-param-test.h b/googletest/include/gtest/gtest-param-test.h
index d904739a..d7c9dd8c 100644
--- a/googletest/include/gtest/gtest-param-test.h
+++ b/googletest/include/gtest/gtest-param-test.h
@@ -100,7 +100,7 @@ INSTANTIATE_TEST_SUITE_P(InstantiationName,
Values("meeny", "miny", "moe"));
// To distinguish different instances of the pattern, (yes, you
-// can instantiate it more then once) the first argument to the
+// can instantiate it more than once) the first argument to the
// INSTANTIATE_TEST_SUITE_P macro is a prefix that will be added to the
// actual test suite name. Remember to pick unique prefixes for different
// instantiations. The tests from the instantiation above will have
diff --git a/googletest/include/gtest/internal/gtest-param-util.h b/googletest/include/gtest/internal/gtest-param-util.h
index c7153983..3ed7d22e 100644
--- a/googletest/include/gtest/internal/gtest-param-util.h
+++ b/googletest/include/gtest/internal/gtest-param-util.h
@@ -461,7 +461,7 @@ class ParameterizedTestSuiteInfoBase {
virtual TypeId GetTestSuiteTypeId() const = 0;
// UnitTest class invokes this method to register tests in this
// test suite right before running them in RUN_ALL_TESTS macro.
- // This method should not be called more then once on any single
+ // This method should not be called more than once on any single
// instance of a ParameterizedTestSuiteInfoBase derived class.
virtual void RegisterTests() = 0;
@@ -523,9 +523,9 @@ class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase {
}
// UnitTest class invokes this method to register tests in this test suite
// test suites right before running tests in RUN_ALL_TESTS macro.
- // This method should not be called more then once on any single
+ // This method should not be called more than once on any single
// instance of a ParameterizedTestSuiteInfoBase derived class.
- // UnitTest has a guard to prevent from calling this method more then once.
+ // UnitTest has a guard to prevent from calling this method more than once.
void RegisterTests() override {
for (typename TestInfoContainer::iterator test_it = tests_.begin();
test_it != tests_.end(); ++test_it) {
OpenPOWER on IntegriCloud