diff options
author | yutotnh <57719497+yutotnh@users.noreply.github.com> | 2022-07-01 09:33:00 (GMT) |
---|---|---|
committer | yutotnh <57719497+yutotnh@users.noreply.github.com> | 2022-07-01 09:33:00 (GMT) |
commit | 6c57d607c7d75df2d87b1e349f9bef054499c1bf (patch) | |
tree | 80ae4bfe1eb1b95787235c87b64f88a1bae1f56a /googlemock | |
parent | 2cf9987ce3510de36640dcabd3d53db2c09312f6 (diff) | |
download | googletest-6c57d607c7d75df2d87b1e349f9bef054499c1bf.zip googletest-6c57d607c7d75df2d87b1e349f9bef054499c1bf.tar.gz googletest-6c57d607c7d75df2d87b1e349f9bef054499c1bf.tar.bz2 |
fix: typo in test name
Diffstat (limited to 'googlemock')
-rw-r--r-- | googlemock/test/gmock-spec-builders_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/test/gmock-spec-builders_test.cc b/googlemock/test/gmock-spec-builders_test.cc index 122d5b9..bb0773b 100644 --- a/googlemock/test/gmock-spec-builders_test.cc +++ b/googlemock/test/gmock-spec-builders_test.cc @@ -1064,7 +1064,7 @@ TEST(UnexpectedCallTest, UnmatchedArguments) { // Tests that Google Mock explains that an expectation with // unsatisfied pre-requisites doesn't match the call. -TEST(UnexpectedCallTest, UnsatisifiedPrerequisites) { +TEST(UnexpectedCallTest, UnsatisfiedPrerequisites) { Sequence s1, s2; MockB b; EXPECT_CALL(b, DoB(1)).InSequence(s1); |