| Index: net/socket/ssl_client_socket_unittest.cc
|
| diff --git a/net/socket/ssl_client_socket_unittest.cc b/net/socket/ssl_client_socket_unittest.cc
|
| index 6789d67ab3a7e170924af275b632bc294cbb7ab6..743df4fd6b7bbd7f29086dae12dbe32f35e884c7 100644
|
| --- a/net/socket/ssl_client_socket_unittest.cc
|
| +++ b/net/socket/ssl_client_socket_unittest.cc
|
| @@ -2694,7 +2694,6 @@ TEST_F(SSLClientSocketTest, HandshakeCallbackIsRun_WithFailure) {
|
| // Tests that the completion callback is run when an SSL connection
|
| // completes successfully.
|
| TEST_F(SSLClientSocketTest, HandshakeCallbackIsRun_WithSuccess) {
|
| - SpawnedTestServer::SSLOptions ssl_options;
|
| SpawnedTestServer test_server(SpawnedTestServer::TYPE_HTTPS,
|
| SpawnedTestServer::kLocalhost,
|
| base::FilePath());
|
| @@ -2728,8 +2727,8 @@ TEST_F(SSLClientSocketTest, HandshakeCallbackIsRun_WithSuccess) {
|
| EXPECT_TRUE(ran_handshake_completion_callback_);
|
| }
|
|
|
| -// Tests that the completion callback is run with connections
|
| -// that do not cache their session.
|
| +// Tests that the completion callback is run with a server that doesn't cache
|
| +// sessions.
|
| TEST_F(SSLClientSocketTest, HandshakeCallbackIsRun_WithDisabledSessionCache) {
|
| SpawnedTestServer::SSLOptions ssl_options;
|
| ssl_options.disable_session_cache = true;
|
|
|