| 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 4777d8ae228de16101db6ead73e0ef79e7b2ae15..dd5ff1fa08173c7644b199921461cf30bda57b30 100644
|
| --- a/net/quic/quic_end_to_end_unittest.cc
|
| +++ b/net/quic/quic_end_to_end_unittest.cc
|
| @@ -133,10 +133,11 @@ class QuicEndToEndTest : public PlatformTest {
|
| CHECK(net::ParseIPLiteralToNumber("127.0.0.1", &ip));
|
| server_address_ = IPEndPoint(ip, 0);
|
| server_config_.SetDefaults();
|
| + server_config_.SetInitialFlowControlWindowToSend(
|
| + kInitialFlowControlWindowForTest);
|
| server_thread_.reset(new ServerThread(server_address_, server_config_,
|
| QuicSupportedVersions(),
|
| - strike_register_no_startup_period_,
|
| - kInitialFlowControlWindowForTest));
|
| + strike_register_no_startup_period_));
|
| server_thread_->Initialize();
|
| server_address_ = IPEndPoint(server_address_.address(),
|
| server_thread_->GetPort());
|
|
|