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 2f6d84e2b636211869d0bce78cb68992b52b643f..1104f4db5269bbff0f505d99761c004cf09ed5dd 100644 |
--- a/net/quic/quic_data_stream_test.cc |
+++ b/net/quic/quic_data_stream_test.cc |
@@ -403,9 +403,6 @@ TEST_P(QuicDataStreamTest, ConnectionFlowControlWindowUpdate) { |
// Tests that on receipt of data, the connection updates its receive window |
// offset appropriately, and sends WINDOW_UPDATE frames when its receive |
// window drops too low. |
- if (GetParam() < QUIC_VERSION_19) { |
- return; |
- } |
Initialize(kShouldProcessData); |
// Set a small flow control limit for streams and connection. |
@@ -484,9 +481,6 @@ TEST_P(QuicDataStreamTest, ConnectionFlowControlViolation) { |
// Tests that on if the peer sends too much data (i.e. violates the flow |
// control protocol), at the connection level (rather than the stream level) |
// then we terminate the connection. |
- if (GetParam() < QUIC_VERSION_19) { |
- return; |
- } |
// Stream should not process data, so that data gets buffered in the |
// sequencer, triggering flow control limits. |