fix: typo in test name
This commit is contained in:
		@@ -1064,7 +1064,7 @@ TEST(UnexpectedCallTest, UnmatchedArguments) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// Tests that Google Mock explains that an expectation with
 | 
					// Tests that Google Mock explains that an expectation with
 | 
				
			||||||
// unsatisfied pre-requisites doesn't match the call.
 | 
					// unsatisfied pre-requisites doesn't match the call.
 | 
				
			||||||
TEST(UnexpectedCallTest, UnsatisifiedPrerequisites) {
 | 
					TEST(UnexpectedCallTest, UnsatisfiedPrerequisites) {
 | 
				
			||||||
  Sequence s1, s2;
 | 
					  Sequence s1, s2;
 | 
				
			||||||
  MockB b;
 | 
					  MockB b;
 | 
				
			||||||
  EXPECT_CALL(b, DoB(1)).InSequence(s1);
 | 
					  EXPECT_CALL(b, DoB(1)).InSequence(s1);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user