Googletest export

Remove redundant Base/Derived types.

PiperOrigin-RevId: 222243634
pull/1976/head
Abseil Team 6 years ago committed by Gennadiy Civil
parent bb7c0ecbdf
commit 64368e0584
  1. 2
      googlemock/test/gmock-actions_test.cc

@ -1146,8 +1146,6 @@ TEST(WithArgsTest, ReturnReference) {
}
TEST(WithArgsTest, InnerActionWithConversion) {
struct Base {};
struct Derived : Base {};
Action<Derived*()> inner = [] { return nullptr; };
Action<Base*(double)> a = testing::WithoutArgs(inner);
EXPECT_EQ(nullptr, a.Perform(std::make_tuple(1.1)));

Loading…
Cancel
Save