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