Fix typo in gmock-matchers_test.cc: CanDescribeNegationOfExpectingOneElment => CanDescribeNegationOfExpectingOneElement
PiperOrigin-RevId: 409484263 Change-Id: I7448d6f04a9868602e0bc8dec40ea3eb63d3e387
This commit is contained in:
		
				
					committed by
					
						
						Copybara-Service
					
				
			
			
				
	
			
			
			
						parent
						
							25208a60a2
						
					
				
				
					commit
					1b18723e87
				
			@@ -7289,7 +7289,7 @@ TEST(ElementsAreTest, CanDescribeNegationOfExpectingNoElement) {
 | 
				
			|||||||
  EXPECT_EQ("isn't empty", DescribeNegation(m));
 | 
					  EXPECT_EQ("isn't empty", DescribeNegation(m));
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
TEST(ElementsAreTest, CanDescribeNegationOfExpectingOneElment) {
 | 
					TEST(ElementsAreTest, CanDescribeNegationOfExpectingOneElement) {
 | 
				
			||||||
  Matcher<const list<int>&> m = ElementsAre(Gt(5));
 | 
					  Matcher<const list<int>&> m = ElementsAre(Gt(5));
 | 
				
			||||||
  EXPECT_EQ(
 | 
					  EXPECT_EQ(
 | 
				
			||||||
      "doesn't have 1 element, or\n"
 | 
					      "doesn't have 1 element, or\n"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user