diff options
Diffstat (limited to 'net/quic/quic_end_to_end_unittest.cc')
-rw-r--r-- | net/quic/quic_end_to_end_unittest.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/quic/quic_end_to_end_unittest.cc b/net/quic/quic_end_to_end_unittest.cc index b35021e..10cfc97 100644 --- a/net/quic/quic_end_to_end_unittest.cc +++ b/net/quic/quic_end_to_end_unittest.cc @@ -167,8 +167,7 @@ class QuicEndToEndTest : public ::testing::TestWithParam<TestParams> { // Starts the QUIC server listening on a random port. void StartServer() { - IPAddress ip; - CHECK(ip.AssignFromIPLiteral("127.0.0.1")); + IPAddress ip(127, 0, 0, 1); server_address_ = IPEndPoint(ip, 0); server_config_.SetInitialStreamFlowControlWindowToSend( kInitialStreamFlowControlWindowForTest); |