| Index: net/tools/quic/quic_client_session_test.cc
|
| diff --git a/net/tools/quic/quic_client_session_test.cc b/net/tools/quic/quic_client_session_test.cc
|
| index cdf3c3c527fbbb6edeb4c7bd984207c5cab462f0..5ce15e083d05364430ca04f657774d6fe8b53e11 100644
|
| --- a/net/tools/quic/quic_client_session_test.cc
|
| +++ b/net/tools/quic/quic_client_session_test.cc
|
| @@ -235,9 +235,8 @@ TEST_P(QuicClientSessionTest, MaxNumStreamsWithRst) {
|
|
|
| // Close the stream and receive an RST frame to remove the unfinished stream
|
| session_->CloseStream(stream->id());
|
| - session_->OnRstStream(QuicRstStreamFrame(
|
| - stream->id(), AdjustErrorForVersion(QUIC_RST_ACKNOWLEDGEMENT, GetParam()),
|
| - 0));
|
| + session_->OnRstStream(
|
| + QuicRstStreamFrame(stream->id(), QUIC_RST_ACKNOWLEDGEMENT, 0));
|
| // Check that a new one can be created.
|
| EXPECT_EQ(0u, session_->GetNumOpenOutgoingStreams());
|
| stream = session_->CreateOutgoingDynamicStream(kDefaultPriority);
|
|
|