| Index: net/http/bidirectional_stream_unittest.cc
|
| diff --git a/net/http/bidirectional_stream_unittest.cc b/net/http/bidirectional_stream_unittest.cc
|
| index 4d6445f4631884304f0193459ef2cdb5cc7bc17a..33178b16bee47ed34350aca723c4326bc69591b8 100644
|
| --- a/net/http/bidirectional_stream_unittest.cc
|
| +++ b/net/http/bidirectional_stream_unittest.cc
|
| @@ -1224,6 +1224,7 @@ TEST_F(BidirectionalStreamTest, TestHonorAlternativeServiceHeader) {
|
| };
|
|
|
| HostPortPair host_port_pair("www.example.org", 443);
|
| + url::SchemeHostPort server("https", "www.example.org", 443);
|
| SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
|
| PRIVACY_MODE_DISABLED);
|
| session_deps_.parse_alternative_services = true;
|
| @@ -1258,8 +1259,7 @@ TEST_F(BidirectionalStreamTest, TestHonorAlternativeServiceHeader) {
|
| delegate->GetTotalReceivedBytes());
|
|
|
| AlternativeServiceVector alternative_service_vector =
|
| - http_session_->http_server_properties()->GetAlternativeServices(
|
| - host_port_pair);
|
| + http_session_->http_server_properties()->GetAlternativeServices(server);
|
| ASSERT_EQ(1u, alternative_service_vector.size());
|
| EXPECT_EQ(AlternateProtocolFromNextProto(kProtoQUIC1SPDY3),
|
| alternative_service_vector[0].protocol);
|
|
|