| Index: net/http/http_pipelined_host_impl_unittest.cc
|
| ===================================================================
|
| --- net/http/http_pipelined_host_impl_unittest.cc (revision 118987)
|
| +++ net/http/http_pipelined_host_impl_unittest.cc (working copy)
|
| @@ -103,7 +103,7 @@
|
| MatchesOrigin(origin_),
|
| Ref(ssl_config_), Ref(proxy_info_),
|
| Ref(net_log_), true,
|
| - SSLClientSocket::kProtoSPDY2))
|
| + SSLClientSocket::kProtoSPDY21))
|
| .Times(1)
|
| .WillOnce(Return(pipeline));
|
| EXPECT_CALL(*pipeline, CreateNewStream())
|
| @@ -111,7 +111,7 @@
|
| .WillOnce(Return(kDummyStream));
|
| EXPECT_EQ(kDummyStream, host_->CreateStreamOnNewPipeline(
|
| kDummyConnection, ssl_config_, proxy_info_, net_log_, true,
|
| - SSLClientSocket::kProtoSPDY2));
|
| + SSLClientSocket::kProtoSPDY21));
|
| return pipeline;
|
| }
|
|
|
| @@ -263,7 +263,7 @@
|
| ClearTestPipeline(pipeline);
|
| EXPECT_EQ(NULL, host_->CreateStreamOnNewPipeline(
|
| kDummyConnection, ssl_config_, proxy_info_, net_log_, true,
|
| - SSLClientSocket::kProtoSPDY2));
|
| + SSLClientSocket::kProtoSPDY21));
|
| }
|
|
|
| TEST_F(HttpPipelinedHostImplTest, ShutsDownOnAuthenticationRequired) {
|
|
|