Chromium Code Reviews| Index: net/quic/quic_connection_helper_test.cc |
| diff --git a/net/quic/quic_connection_helper_test.cc b/net/quic/quic_connection_helper_test.cc |
| index d3d97e504f0d557f980e3754c8ebb278e93e68fa..159b20ae4ef602b51adafab1f5b4a8a90a4bba3d 100644 |
| --- a/net/quic/quic_connection_helper_test.cc |
| +++ b/net/quic/quic_connection_helper_test.cc |
| @@ -133,6 +133,7 @@ class QuicConnectionHelperTest : public ::testing::Test { |
| QuicTime::Delta::FromMilliseconds(100))); |
| ON_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _)) |
| .WillByDefault(Return(true)); |
| + ON_CALL(*send_algorithm_, SetFromConfig(_, _)).WillByDefault(Return()); |
|
Ryan Hamilton
2013/10/31 19:43:44
SetFromConfig is a void method, right? Can you do
ramant (doing other things)
2013/10/31 23:11:52
Done.
|
| EXPECT_CALL(visitor_, HasPendingHandshake()).Times(AnyNumber()); |
| writer_.reset(new QuicDefaultPacketWriter(socket_.get())); |
| connection_.reset(new TestConnection(guid_, IPEndPoint(), helper_.get(), |