| Index: net/quic/quic_data_stream_test.cc
|
| diff --git a/net/quic/quic_data_stream_test.cc b/net/quic/quic_data_stream_test.cc
|
| index be9bc4d213327beaeb87461c9d292539cdde2f1c..b36053c6e7548ff358c52acd14c079c0b5a6746c 100644
|
| --- a/net/quic/quic_data_stream_test.cc
|
| +++ b/net/quic/quic_data_stream_test.cc
|
| @@ -282,7 +282,7 @@ TEST_P(QuicDataStreamTest, ProcessHeadersUsingReadvWithMultipleIovecs) {
|
| TEST_P(QuicDataStreamTest, StreamFlowControlBlocked) {
|
| // Tests that we send a BLOCKED frame to the peer when we attempt to write,
|
| // but are flow control blocked.
|
| - if (GetParam() < QUIC_VERSION_17) {
|
| + if (GetParam() <= QUIC_VERSION_16) {
|
| return;
|
| }
|
|
|
| @@ -320,7 +320,7 @@ TEST_P(QuicDataStreamTest, StreamFlowControlNoWindowUpdateIfNotConsumed) {
|
| // sequencer, whether they are consumed immediately or buffered. However we
|
| // only send WINDOW_UPDATE frames based on increasing number of bytes
|
| // consumed.
|
| - if (GetParam() < QUIC_VERSION_17) {
|
| + if (GetParam() <= QUIC_VERSION_16) {
|
| return;
|
| }
|
|
|
| @@ -367,7 +367,7 @@ TEST_P(QuicDataStreamTest, StreamFlowControlWindowUpdate) {
|
| // Tests that on receipt of data, the stream updates its receive window offset
|
| // appropriately, and sends WINDOW_UPDATE frames when its receive window drops
|
| // too low.
|
| - if (GetParam() < QUIC_VERSION_17) {
|
| + if (GetParam() <= QUIC_VERSION_16) {
|
| return;
|
| }
|
|
|
| @@ -471,7 +471,7 @@ TEST_P(QuicDataStreamTest, ConnectionFlowControlWindowUpdate) {
|
| TEST_P(QuicDataStreamTest, StreamFlowControlViolation) {
|
| // Tests that on if the peer sends too much data (i.e. violates the flow
|
| // control protocol), then we terminate the connection.
|
| - if (GetParam() < QUIC_VERSION_17) {
|
| + if (GetParam() <= QUIC_VERSION_16) {
|
| return;
|
| }
|
|
|
| @@ -539,7 +539,7 @@ TEST_P(QuicDataStreamTest, ConnectionFlowControlViolation) {
|
| TEST_P(QuicDataStreamTest, StreamFlowControlFinNotBlocked) {
|
| // An attempt to write a FIN with no data should not be flow control blocked,
|
| // even if the send window is 0.
|
| - if (GetParam() < QUIC_VERSION_17) {
|
| + if (GetParam() <= QUIC_VERSION_16) {
|
| return;
|
| }
|
|
|
|
|