| Index: net/quic/quic_stream_factory_test.cc
|
| diff --git a/net/quic/quic_stream_factory_test.cc b/net/quic/quic_stream_factory_test.cc
|
| index c82fd23167188cf4c2b81ffc4d12ff56aebc71c6..b8b323c465f82535210a64de6742dccee4d2703f 100644
|
| --- a/net/quic/quic_stream_factory_test.cc
|
| +++ b/net/quic/quic_stream_factory_test.cc
|
| @@ -138,7 +138,7 @@ class QuicStreamFactoryTest : public ::testing::TestWithParam<QuicVersion> {
|
| }
|
|
|
| scoped_ptr<QuicEncryptedPacket> ConstructRstPacket() {
|
| - QuicStreamId stream_id = GetParam() > QUIC_VERSION_12 ? 5 : 3;
|
| + QuicStreamId stream_id = 5;
|
| return maker_.MakeRstPacket(1, true, stream_id, QUIC_STREAM_NO_ERROR);
|
| }
|
|
|
| @@ -525,7 +525,7 @@ TEST_P(QuicStreamFactoryTest, MaxOpenStream) {
|
| MockRead reads[] = {
|
| MockRead(ASYNC, OK, 0) // EOF
|
| };
|
| - QuicStreamId stream_id = GetParam() > QUIC_VERSION_12 ? 5 : 3;
|
| + QuicStreamId stream_id = 5;
|
| scoped_ptr<QuicEncryptedPacket> rst(
|
| maker_.MakeRstPacket(1, true, stream_id, QUIC_STREAM_CANCELLED));
|
| MockWrite writes[] = {
|
|
|