Index: net/tools/quic/end_to_end_test.cc |
diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc |
index d4684a1d6a2d3a6cb0d68a7e9d90d570617f7d88..d63977e741605a5addd9d1759253c2c199ba325c 100644 |
--- a/net/tools/quic/end_to_end_test.cc |
+++ b/net/tools/quic/end_to_end_test.cc |
@@ -741,7 +741,7 @@ TEST_P(EndToEndTest, DoNotSetResumeWriteAlarmIfConnectionFlowControlBlocked) { |
// Ensure both stream and connection level are flow control blocked by setting |
// the send window offset to 0. |
- const uint64 kFlowControlWindow = |
+ const uint64 flow_control_window = |
server_config_.GetInitialStreamFlowControlWindowToSend(); |
QuicSpdyClientStream* stream = client_->GetOrCreateStream(); |
QuicSession* session = client_->client()->session(); |
@@ -756,7 +756,7 @@ TEST_P(EndToEndTest, DoNotSetResumeWriteAlarmIfConnectionFlowControlBlocked) { |
// The stream now attempts to write, fails because it is still connection |
// level flow control blocked, and is added to the write blocked list. |
- QuicWindowUpdateFrame window_update(stream->id(), 2 * kFlowControlWindow); |
+ QuicWindowUpdateFrame window_update(stream->id(), 2 * flow_control_window); |
stream->OnWindowUpdateFrame(window_update); |
// Prior to fixing b/14677858 this call would result in an infinite loop in |