Index: net/quic/quic_end_to_end_unittest.cc |
diff --git a/net/quic/quic_end_to_end_unittest.cc b/net/quic/quic_end_to_end_unittest.cc |
index e7e2769c16f7d15ce190fbc1479f0744e20076a4..89622b0483d3af9d7a60d7b295b400e4b64940c3 100644 |
--- a/net/quic/quic_end_to_end_unittest.cc |
+++ b/net/quic/quic_end_to_end_unittest.cc |
@@ -136,7 +136,11 @@ class QuicEndToEndTest : public PlatformTest { |
server_address_ = IPEndPoint(ip, 0); |
server_config_.SetDefaults(); |
server_config_.SetInitialFlowControlWindowToSend( |
- kInitialFlowControlWindowForTest); |
+ kInitialSessionFlowControlWindowForTest); |
+ server_config_.SetInitialStreamFlowControlWindowToSend( |
+ kInitialStreamFlowControlWindowForTest); |
+ server_config_.SetInitialSessionFlowControlWindowToSend( |
+ kInitialSessionFlowControlWindowForTest); |
server_thread_.reset(new ServerThread( |
new QuicServer(server_config_, QuicSupportedVersions()), |
server_address_, |