| Index: net/quic/quic_connection_test.cc
|
| diff --git a/net/quic/quic_connection_test.cc b/net/quic/quic_connection_test.cc
|
| index e6f32f1e2d126bc84c62d2cc36e3b5aaf1933fca..43c324b8167597e0b495991148708a5aa6b7ed58 100644
|
| --- a/net/quic/quic_connection_test.cc
|
| +++ b/net/quic/quic_connection_test.cc
|
| @@ -2169,8 +2169,7 @@ TEST_P(QuicConnectionTest, ReviveMissingPacketWithVaryingSeqNumLengths) {
|
| sequence_number_length_ = lengths[i];
|
| fec_packet += 2;
|
| // Don't send missing packet, but send fec packet right after it.
|
| - ProcessFecPacket(/*seq_num=*/fec_packet, /*fec_group=*/fec_packet - 1,
|
| - true, !kEntropyFlag, NULL);
|
| + ProcessFecPacket(fec_packet, fec_packet - 1, true, !kEntropyFlag, NULL);
|
| // Sequence number length in the revived header should be the same as
|
| // in the original data/fec packet headers.
|
| EXPECT_EQ(sequence_number_length_, fec_visitor->revived_header().
|
| @@ -2198,8 +2197,7 @@ TEST_P(QuicConnectionTest, ReviveMissingPacketWithVaryingConnectionIdLengths) {
|
| connection_id_length_ = lengths[i];
|
| fec_packet += 2;
|
| // Don't send missing packet, but send fec packet right after it.
|
| - ProcessFecPacket(/*seq_num=*/fec_packet, /*fec_group=*/fec_packet - 1,
|
| - true, !kEntropyFlag, NULL);
|
| + ProcessFecPacket(fec_packet, fec_packet - 1, true, !kEntropyFlag, NULL);
|
| // Connection id length in the revived header should be the same as
|
| // in the original data/fec packet headers.
|
| EXPECT_EQ(connection_id_length_,
|
|
|