Index: net/quic/quic_session_test.cc |
diff --git a/net/quic/quic_session_test.cc b/net/quic/quic_session_test.cc |
index 471262072c0532c287d0297ad311af1dedc8fdfc..77a9e89e623666e2eb4d85318dc549d987f3b1ad 100644 |
--- a/net/quic/quic_session_test.cc |
+++ b/net/quic/quic_session_test.cc |
@@ -730,7 +730,7 @@ TEST_P(QuicSessionTest, HandshakeUnblocksFlowControlBlockedHeadersStream) { |
QuicStreamId stream_id = 5; |
// Write until the header stream is flow control blocked. |
SpdyHeaderBlock headers; |
- while (!headers_stream->flow_controller()->IsBlocked() && stream_id < 2010) { |
+ while (!headers_stream->flow_controller()->IsBlocked() && stream_id < 2000) { |
EXPECT_FALSE(session_.IsConnectionFlowControlBlocked()); |
EXPECT_FALSE(session_.IsStreamFlowControlBlocked()); |
headers["header"] = base::Uint64ToString(base::RandUint64()) + |