| Index: net/quic/quic_stream_factory_test.cc
|
| diff --git a/net/quic/quic_stream_factory_test.cc b/net/quic/quic_stream_factory_test.cc
|
| index de2592ea356b3b364b26e0a4611eb8c41ce51651..5c604ea4fa6b2afd2ec3b3ede6ed56e288aa8975 100644
|
| --- a/net/quic/quic_stream_factory_test.cc
|
| +++ b/net/quic/quic_stream_factory_test.cc
|
| @@ -36,6 +36,7 @@ class QuicStreamFactoryTest : public ::testing::Test {
|
| ProxyServer::Direct()),
|
| is_https_(false),
|
| cert_verifier_(CertVerifier::CreateDefault()) {
|
| + factory_.set_require_confirmation(false);
|
| }
|
|
|
| scoped_ptr<QuicEncryptedPacket> ConstructRstPacket(
|
| @@ -343,6 +344,7 @@ TEST_F(QuicStreamFactoryTest, OnIPAddressChanged) {
|
| factory_.OnIPAddressChanged();
|
| EXPECT_EQ(ERR_NETWORK_CHANGED,
|
| stream->ReadResponseHeaders(callback_.callback()));
|
| + EXPECT_TRUE(factory_.require_confirmation());
|
|
|
| // Now attempting to request a stream to the same origin should create
|
| // a new session.
|
|
|