| Index: net/quic/quic_crypto_client_stream_test.cc
|
| diff --git a/net/quic/quic_crypto_client_stream_test.cc b/net/quic/quic_crypto_client_stream_test.cc
|
| index 251a8ef3eead6dc18871e3364b162c172949a8e0..d8d239218126d654cfd9b3b58503a857dfe12c9f 100644
|
| --- a/net/quic/quic_crypto_client_stream_test.cc
|
| +++ b/net/quic/quic_crypto_client_stream_test.cc
|
| @@ -66,7 +66,9 @@ class QuicCryptoClientStreamTest : public ::testing::Test {
|
| : addr_(),
|
| connection_(new PacketSavingConnection(1, addr_, true)),
|
| session_(connection_, true),
|
| - stream_(&session_, kServerHostname) {
|
| + stream_(kServerHostname, config_, &session_, &crypto_config_) {
|
| + config_.SetDefaults();
|
| + crypto_config_.SetDefaults();
|
| }
|
|
|
| void CompleteCryptoHandshake() {
|
| @@ -85,6 +87,8 @@ class QuicCryptoClientStreamTest : public ::testing::Test {
|
| QuicCryptoClientStream stream_;
|
| CryptoHandshakeMessage message_;
|
| scoped_ptr<QuicData> message_data_;
|
| + QuicConfig config_;
|
| + QuicCryptoClientConfig crypto_config_;
|
| };
|
|
|
| TEST_F(QuicCryptoClientStreamTest, NotInitiallyConected) {
|
|
|