Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/googletest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryutotnh <57719497+yutotnh@users.noreply.github.com>2022-07-01 12:33:00 +0300
committeryutotnh <57719497+yutotnh@users.noreply.github.com>2022-07-01 12:33:00 +0300
commit6c57d607c7d75df2d87b1e349f9bef054499c1bf (patch)
tree80ae4bfe1eb1b95787235c87b64f88a1bae1f56a /googlemock
parent2cf9987ce3510de36640dcabd3d53db2c09312f6 (diff)
fix: typo in test name
Diffstat (limited to 'googlemock')
-rw-r--r--googlemock/test/gmock-spec-builders_test.cc2
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 122d5b94..bb0773b5 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);