| Index: net/spdy/spdy_test_util_common.cc
|
| diff --git a/net/spdy/spdy_test_util_common.cc b/net/spdy/spdy_test_util_common.cc
|
| index 1a5fe47fb744ba4c7e1c547d3931681157acebe3..3dfdbc158cb7a1f00212042df6f89d94c4c960c2 100644
|
| --- a/net/spdy/spdy_test_util_common.cc
|
| +++ b/net/spdy/spdy_test_util_common.cc
|
| @@ -557,14 +557,14 @@ base::WeakPtr<SpdySession> CreateInsecureSpdySession(
|
| OK, false /* is_secure */);
|
| }
|
|
|
| -base::WeakPtr<SpdySession> TryCreateInsecureSpdySessionExpectingFailure(
|
| +base::WeakPtr<SpdySession> TryCreateSpdySessionExpectingFailure(
|
| HttpNetworkSession* http_session,
|
| const SpdySessionKey& key,
|
| Error expected_error,
|
| const NetLogWithSource& net_log) {
|
| DCHECK_LT(expected_error, ERR_IO_PENDING);
|
| - return CreateSpdySessionHelper(http_session, key, net_log,
|
| - expected_error, false /* is_secure */);
|
| + return CreateSpdySessionHelper(http_session, key, net_log, expected_error,
|
| + true /* is_secure */);
|
| }
|
|
|
| base::WeakPtr<SpdySession> CreateSecureSpdySession(
|
|
|