Index: net/quic/core/quic_connection_test.cc |
diff --git a/net/quic/core/quic_connection_test.cc b/net/quic/core/quic_connection_test.cc |
index 8afde056e12cc5f9d4c33d808b9e8be981977324..c9ecbef75cf9c16fa7aedd1f012b01a16f161782 100644 |
--- a/net/quic/core/quic_connection_test.cc |
+++ b/net/quic/core/quic_connection_test.cc |
@@ -5229,8 +5229,6 @@ TEST_P(QuicConnectionTest, AlwaysGetPacketTooLarge) { |
// Verify that if connection has no outstanding data, it notifies the send |
// algorithm after the write. |
TEST_P(QuicConnectionTest, SendDataAndBecomeApplicationLimited) { |
- FLAGS_quic_enable_app_limited_check = true; |
- |
EXPECT_CALL(*send_algorithm_, OnApplicationLimited(_)).Times(1); |
{ |
InSequence seq; |
@@ -5247,8 +5245,6 @@ TEST_P(QuicConnectionTest, SendDataAndBecomeApplicationLimited) { |
// Verify that the connection does not become app-limited if there is |
// outstanding data to send after the write. |
TEST_P(QuicConnectionTest, NotBecomeApplicationLimitedIfMoreDataAvailable) { |
- FLAGS_quic_enable_app_limited_check = true; |
- |
EXPECT_CALL(*send_algorithm_, OnApplicationLimited(_)).Times(0); |
{ |
InSequence seq; |
@@ -5263,8 +5259,6 @@ TEST_P(QuicConnectionTest, NotBecomeApplicationLimitedIfMoreDataAvailable) { |
// Verify that the connection does not become app-limited after blocked write |
// even if there is outstanding data to send after the write. |
TEST_P(QuicConnectionTest, NotBecomeApplicationLimitedDueToWriteBlock) { |
- FLAGS_quic_enable_app_limited_check = true; |
- |
EXPECT_CALL(*send_algorithm_, OnApplicationLimited(_)).Times(0); |
EXPECT_CALL(visitor_, WillingAndAbleToWrite()).WillRepeatedly(Return(true)); |
BlockOnNextWrite(); |