Index: net/quic/quic_connection_test.cc |
diff --git a/net/quic/quic_connection_test.cc b/net/quic/quic_connection_test.cc |
index b230fd50eb209ff8a1775a564479346d94f49d82..66cb89c8c60834d1954780c02607857bfbe25284 100644 |
--- a/net/quic/quic_connection_test.cc |
+++ b/net/quic/quic_connection_test.cc |
@@ -3676,10 +3676,6 @@ TEST_P(QuicConnectionTest, CheckSendStats) { |
EXPECT_CALL(*send_algorithm_, BandwidthEstimate()).WillOnce( |
Return(QuicBandwidth::Zero())); |
- const uint32 kSlowStartThreshold = 23u; |
- EXPECT_CALL(*send_algorithm_, GetSlowStartThreshold()).WillOnce( |
- Return(kSlowStartThreshold)); |
- |
const QuicConnectionStats& stats = connection_.GetStats(); |
EXPECT_EQ(3 * first_packet_size + 2 * second_packet_size - kQuicVersionSize, |
stats.bytes_sent); |
@@ -3688,8 +3684,6 @@ TEST_P(QuicConnectionTest, CheckSendStats) { |
stats.bytes_retransmitted); |
EXPECT_EQ(3u, stats.packets_retransmitted); |
EXPECT_EQ(1u, stats.rto_count); |
- EXPECT_EQ(kMaxPacketSize, stats.congestion_window); |
- EXPECT_EQ(kSlowStartThreshold, stats.slow_start_threshold); |
EXPECT_EQ(kDefaultMaxPacketSize, stats.max_packet_size); |
} |
@@ -3705,9 +3699,6 @@ TEST_P(QuicConnectionTest, CheckReceiveStats) { |
EXPECT_CALL(*send_algorithm_, BandwidthEstimate()).WillOnce( |
Return(QuicBandwidth::Zero())); |
- const uint32 kSlowStartThreshold = 23u; |
- EXPECT_CALL(*send_algorithm_, GetSlowStartThreshold()).WillOnce( |
- Return(kSlowStartThreshold)); |
const QuicConnectionStats& stats = connection_.GetStats(); |
EXPECT_EQ(received_bytes, stats.bytes_received); |
@@ -3715,8 +3706,6 @@ TEST_P(QuicConnectionTest, CheckReceiveStats) { |
EXPECT_EQ(1u, stats.packets_revived); |
EXPECT_EQ(1u, stats.packets_dropped); |
- |
- EXPECT_EQ(kSlowStartThreshold, stats.slow_start_threshold); |
} |
TEST_P(QuicConnectionTest, TestFecGroupLimits) { |