| Index: net/quic/quic_stream_sequencer_test.cc
|
| diff --git a/net/quic/quic_stream_sequencer_test.cc b/net/quic/quic_stream_sequencer_test.cc
|
| index 7d22c4c1665d2e8f6f3a2388359f6e5f6f727ed7..74937ae69365ba5e8d9ed120e50b1e2af85324f3 100644
|
| --- a/net/quic/quic_stream_sequencer_test.cc
|
| +++ b/net/quic/quic_stream_sequencer_test.cc
|
| @@ -92,9 +92,9 @@ TEST_F(QuicStreamSequencerTest, RejectOldFrame) {
|
| EXPECT_TRUE(sequencer_->OnFrame(0, "abc", 3));
|
| EXPECT_EQ(0u, sequencer_->frames()->size());
|
| EXPECT_EQ(3u, sequencer_->num_bytes_consumed());
|
| - // Nack this - it matches a past sequence number and we should not see it
|
| + // Ignore this - it matches a past sequence number and we should not see it
|
| // again.
|
| - EXPECT_FALSE(sequencer_->OnFrame(0, "def", 3));
|
| + EXPECT_TRUE(sequencer_->OnFrame(0, "def", 3));
|
| EXPECT_EQ(0u, sequencer_->frames()->size());
|
| }
|
|
|
| @@ -122,7 +122,7 @@ TEST_F(QuicStreamSequencerTest, RejectBufferedFrame) {
|
| EXPECT_EQ(0u, sequencer_->num_bytes_consumed());
|
| // Ignore this - it matches a buffered frame.
|
| // Right now there's no checking that the payload is consistent.
|
| - EXPECT_FALSE(sequencer_->OnFrame(0, "def", 3));
|
| + EXPECT_TRUE(sequencer_->OnFrame(0, "def", 3));
|
| EXPECT_EQ(1u, sequencer_->frames()->size());
|
| }
|
|
|
|
|