| Index: net/quic/quic_config_test.cc
|
| diff --git a/net/quic/quic_config_test.cc b/net/quic/quic_config_test.cc
|
| index 9ca449dd537abc056cd2fc7ab45e4f437ce0cf46..3a4b69f6a1545fcd7bc6e80ffe5a83a87b399e2b 100644
|
| --- a/net/quic/quic_config_test.cc
|
| +++ b/net/quic/quic_config_test.cc
|
| @@ -22,9 +22,7 @@ namespace {
|
|
|
| class QuicConfigTest : public ::testing::Test {
|
| protected:
|
| - QuicConfigTest() {
|
| - config_.SetDefaults();
|
| - }
|
| + QuicConfigTest() { config_.SetDefaults(); }
|
|
|
| QuicConfig config_;
|
| };
|
| @@ -109,8 +107,7 @@ TEST_F(QuicConfigTest, ProcessServerHello) {
|
| QuicTime::Delta::FromSeconds(kDefaultTimeoutSecs / 2),
|
| QuicTime::Delta::FromSeconds(kDefaultTimeoutSecs / 2));
|
| server_config.set_max_streams_per_connection(
|
| - kDefaultMaxStreamsPerConnection / 2,
|
| - kDefaultMaxStreamsPerConnection / 2);
|
| + kDefaultMaxStreamsPerConnection / 2, kDefaultMaxStreamsPerConnection / 2);
|
| server_config.SetInitialCongestionWindowToSend(kDefaultInitialWindow / 2);
|
| server_config.SetInitialRoundTripTimeUsToSend(
|
| 10 * base::Time::kMicrosecondsPerMillisecond);
|
|
|