Fix typo in gmock-actions.h
This upstreams a Google-internal change (141765019).
This commit is contained in:
		@@ -1029,9 +1029,9 @@ class DoBothAction {
 | 
			
		||||
//     return sqrt(x*x + y*y);
 | 
			
		||||
//   }
 | 
			
		||||
//   ...
 | 
			
		||||
//   EXEPCT_CALL(mock, Foo("abc", _, _))
 | 
			
		||||
//   EXPECT_CALL(mock, Foo("abc", _, _))
 | 
			
		||||
//       .WillOnce(Invoke(DistanceToOriginWithLabel));
 | 
			
		||||
//   EXEPCT_CALL(mock, Bar(5, _, _))
 | 
			
		||||
//   EXPECT_CALL(mock, Bar(5, _, _))
 | 
			
		||||
//       .WillOnce(Invoke(DistanceToOriginWithIndex));
 | 
			
		||||
//
 | 
			
		||||
// you could write
 | 
			
		||||
@@ -1041,8 +1041,8 @@ class DoBothAction {
 | 
			
		||||
//     return sqrt(x*x + y*y);
 | 
			
		||||
//   }
 | 
			
		||||
//   ...
 | 
			
		||||
//   EXEPCT_CALL(mock, Foo("abc", _, _)).WillOnce(Invoke(DistanceToOrigin));
 | 
			
		||||
//   EXEPCT_CALL(mock, Bar(5, _, _)).WillOnce(Invoke(DistanceToOrigin));
 | 
			
		||||
//   EXPECT_CALL(mock, Foo("abc", _, _)).WillOnce(Invoke(DistanceToOrigin));
 | 
			
		||||
//   EXPECT_CALL(mock, Bar(5, _, _)).WillOnce(Invoke(DistanceToOrigin));
 | 
			
		||||
typedef internal::IgnoredValue Unused;
 | 
			
		||||
 | 
			
		||||
// This constructor allows us to turn an Action<From> object into an
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user