summaryrefslogtreecommitdiffstats
path: root/googlemock
diff options
context:
space:
mode:
authorCopybara-Service <copybara-worker@google.com>2023-01-30 18:55:07 (GMT)
committerCopybara-Service <copybara-worker@google.com>2023-01-30 18:55:07 (GMT)
commite3dbee4b355180b87c48254205122c20e97f2f07 (patch)
tree6e7c6fb8abeafaf546702be65d36ac2bd7808834 /googlemock
parentb72202078d0a7a2f2509eb5237685bcf1baea3b4 (diff)
parent64e0945546ec8c331af27ebffcca44a4006e9e35 (diff)
downloadgoogletest-e3dbee4b355180b87c48254205122c20e97f2f07.zip
googletest-e3dbee4b355180b87c48254205122c20e97f2f07.tar.gz
googletest-e3dbee4b355180b87c48254205122c20e97f2f07.tar.bz2
Merge pull request #4115 from SunBlack:codespell
PiperOrigin-RevId: 505740434 Change-Id: I963f6a6b667a030c87f211173f578f7c35733e68
Diffstat (limited to 'googlemock')
-rw-r--r--googlemock/test/gmock-matchers-comparisons_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/test/gmock-matchers-comparisons_test.cc b/googlemock/test/gmock-matchers-comparisons_test.cc
index 0cf731f..83242d6 100644
--- a/googlemock/test/gmock-matchers-comparisons_test.cc
+++ b/googlemock/test/gmock-matchers-comparisons_test.cc
@@ -864,7 +864,7 @@ struct Type {
};
TEST(TypedEqTest, HasSpecifiedType) {
- // Verfies that the type of TypedEq<T>(v) is Matcher<T>.
+ // Verifies that the type of TypedEq<T>(v) is Matcher<T>.
Type<Matcher<int>>::IsTypeOf(TypedEq<int>(5));
Type<Matcher<double>>::IsTypeOf(TypedEq<double>(5));
}
@@ -1530,7 +1530,7 @@ TEST(PairTest, MatchesCorrectly) {
EXPECT_THAT(p, Pair(25, "foo"));
EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o")));
- // 'first' doesnt' match, but 'second' matches.
+ // 'first' doesn't match, but 'second' matches.
EXPECT_THAT(p, Not(Pair(42, "foo")));
EXPECT_THAT(p, Not(Pair(Lt(25), "foo")));