| Index: net/quic/quic_sent_packet_manager_test.cc
|
| diff --git a/net/quic/quic_sent_packet_manager_test.cc b/net/quic/quic_sent_packet_manager_test.cc
|
| index 81b000e00ec12b768af3658ae038121ae5762a7d..ac8e270d4f96503b881b67576cff1e4cfa3e1e04 100644
|
| --- a/net/quic/quic_sent_packet_manager_test.cc
|
| +++ b/net/quic/quic_sent_packet_manager_test.cc
|
| @@ -1075,7 +1075,7 @@ TEST_P(QuicSentPacketManagerTest, NewRetransmissionTimeout) {
|
| client_config.SetConnectionOptionsToSend(options);
|
| EXPECT_CALL(*network_change_visitor_, OnCongestionChange());
|
| EXPECT_CALL(*send_algorithm_, SetFromConfig(_, _));
|
| - EXPECT_CALL(*send_algorithm_, PacingRate())
|
| + EXPECT_CALL(*send_algorithm_, PacingRate(_))
|
| .WillRepeatedly(Return(QuicBandwidth::Zero()));
|
| EXPECT_CALL(*send_algorithm_, GetCongestionWindow())
|
| .WillOnce(Return(10 * kDefaultTCPMSS));
|
| @@ -1576,7 +1576,7 @@ TEST_P(QuicSentPacketManagerTest, NegotiateUndoFromOptionsAtServer) {
|
| // Ensure undo works as intended.
|
| // Send 5 packets, mark the first 4 for retransmission, and then cancel
|
| // them when 1 is acked.
|
| - EXPECT_CALL(*send_algorithm_, PacingRate())
|
| + EXPECT_CALL(*send_algorithm_, PacingRate(_))
|
| .WillRepeatedly(Return(QuicBandwidth::Zero()));
|
| EXPECT_CALL(*send_algorithm_, GetCongestionWindow())
|
| .WillOnce(Return(10 * kDefaultTCPMSS));
|
| @@ -1639,7 +1639,7 @@ TEST_P(QuicSentPacketManagerTest,
|
| EXPECT_CALL(*send_algorithm_, SetFromConfig(_, _));
|
| EXPECT_CALL(*send_algorithm_,
|
| SetMaxCongestionWindow(kMinSocketReceiveBuffer * 0.6));
|
| - EXPECT_CALL(*send_algorithm_, PacingRate())
|
| + EXPECT_CALL(*send_algorithm_, PacingRate(_))
|
| .WillRepeatedly(Return(QuicBandwidth::Zero()));
|
| EXPECT_CALL(*send_algorithm_, GetCongestionWindow())
|
| .WillOnce(Return(10 * kDefaultTCPMSS));
|
|
|