| Index: net/quic/quic_client_session_test.cc
|
| diff --git a/net/quic/quic_client_session_test.cc b/net/quic/quic_client_session_test.cc
|
| index 5e0ea536d705e0319f946fb58a606b9f649dbe11..1b5d4f2a6cbbbd2ebd1053251b9371571f594b66 100644
|
| --- a/net/quic/quic_client_session_test.cc
|
| +++ b/net/quic/quic_client_session_test.cc
|
| @@ -27,6 +27,7 @@ namespace test {
|
| namespace {
|
|
|
| const char kServerHostname[] = "www.example.com";
|
| +const uint16 kServerPort = 80;
|
|
|
| class TestPacketWriter : public QuicDefaultPacketWriter {
|
| public:
|
| @@ -67,8 +68,8 @@ class QuicClientSessionTest : public ::testing::TestWithParam<QuicVersion> {
|
| connection_(
|
| new PacketSavingConnection(false, SupportedVersions(GetParam()))),
|
| session_(connection_, GetSocket().Pass(), writer_.Pass(), NULL, NULL,
|
| - kServerHostname, DefaultQuicConfig(), &crypto_config_,
|
| - &net_log_) {
|
| + kServerHostname, kServerPort, DefaultQuicConfig(),
|
| + &crypto_config_, &net_log_) {
|
| session_.config()->SetDefaults();
|
| crypto_config_.SetDefaults();
|
| }
|
|
|