Index: net/quic/congestion_control/tcp_loss_algorithm_test.cc |
diff --git a/net/quic/congestion_control/tcp_loss_algorithm_test.cc b/net/quic/congestion_control/tcp_loss_algorithm_test.cc |
index d2737df0a1c169932491e981f2ca50b0c2e37110..c4e122691734846cd360cfca4b9c40d91be742d3 100644 |
--- a/net/quic/congestion_control/tcp_loss_algorithm_test.cc |
+++ b/net/quic/congestion_control/tcp_loss_algorithm_test.cc |
@@ -33,7 +33,7 @@ class TcpLossAlgorithmTest : public ::testing::Test { |
size_t num_losses) { |
SequenceNumberSet lost_packets = |
loss_algorithm_.DetectLostPackets( |
- unacked_packets_, QuicTime::Zero(), largest_observed, srtt_); |
+ unacked_packets_, QuicTime::Zero(), largest_observed, srtt_, srtt_); |
EXPECT_EQ(num_losses, lost_packets.size()); |
for (size_t i = 0; i < num_losses; ++i) { |
EXPECT_TRUE(ContainsKey(lost_packets, losses_expected[i])); |