| Index: net/quic/quic_connection_test.cc
|
| diff --git a/net/quic/quic_connection_test.cc b/net/quic/quic_connection_test.cc
|
| index 8cdd5d82a01b7469da1a963ba9ccb45e54942f77..5636363093d035190bc6c3d87fedf0e86a0039a5 100644
|
| --- a/net/quic/quic_connection_test.cc
|
| +++ b/net/quic/quic_connection_test.cc
|
| @@ -1847,7 +1847,9 @@ TEST_F(QuicConnectionTest, RetransmitWriteBlockedAckedOriginalThenSent) {
|
| ProcessAckPacket(&ack);
|
|
|
| connection_.OnPacketSent(WriteResult(WRITE_STATUS_OK, 0));
|
| - EXPECT_TRUE(connection_.GetRetransmissionAlarm()->IsSet());
|
| + // The retransmission alarm should not be set because there are
|
| + // no unacked packets.
|
| + EXPECT_FALSE(connection_.GetRetransmissionAlarm()->IsSet());
|
| }
|
|
|
| TEST_F(QuicConnectionTest, ResumptionAlarmWhenWriteBlocked) {
|
|
|