fix: typo in test name

This commit is contained in:
yutotnh 2022-07-01 18:33:00 +09:00
parent 2cf9987ce3
commit 6c57d607c7
No known key found for this signature in database
GPG Key ID: 4337BC8A24CA3BDC

View File

@ -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);