| Index: net/quic/reliable_quic_stream_test.cc
|
| diff --git a/net/quic/reliable_quic_stream_test.cc b/net/quic/reliable_quic_stream_test.cc
|
| index b673a4eef5d415a6ad7d31538a3cd51c7cc472f4..ea81d6e34024fb27645ab5329536fce210afa565 100644
|
| --- a/net/quic/reliable_quic_stream_test.cc
|
| +++ b/net/quic/reliable_quic_stream_test.cc
|
| @@ -395,7 +395,6 @@ TEST_F(ReliableQuicStreamTest, OnlySendOneRst) {
|
| }
|
|
|
| TEST_F(ReliableQuicStreamTest, StreamFlowControlMultipleWindowUpdates) {
|
| - ValueRestore<bool> old_flag(&FLAGS_enable_quic_stream_flow_control_2, true);
|
| set_initial_flow_control_window_bytes(1000);
|
|
|
| Initialize(kShouldProcessData);
|
| @@ -431,7 +430,6 @@ TEST_F(ReliableQuicStreamTest, StreamFlowControlMultipleWindowUpdates) {
|
| TEST_F(ReliableQuicStreamTest, StreamFlowControlShouldNotBlockInLessThanQ017) {
|
| // TODO(rjshade): Remove this test when we no longer have any versions <
|
| // QUIC_VERSION_17.
|
| - ValueRestore<bool> old_flag(&FLAGS_enable_quic_stream_flow_control_2, true);
|
|
|
| // Make sure we are using a version which does not support flow control.
|
| QuicVersion kTestQuicVersions[] = {QUIC_VERSION_16};
|
| @@ -636,8 +634,6 @@ TEST_F(ReliableQuicStreamTest, WriteAndBufferDataWithAckNotiferOnlyFinRemains) {
|
| // as we check for violation and close the connection early.
|
| TEST_F(ReliableQuicStreamTest,
|
| StreamSequencerNeverSeesPacketsViolatingFlowControl) {
|
| - ValueRestore<bool> old_stream_flag(
|
| - &FLAGS_enable_quic_stream_flow_control_2, true);
|
| ValueRestore<bool> old_connection_flag(
|
| &FLAGS_enable_quic_connection_flow_control_2, true);
|
|
|
|
|