| Index: net/spdy/spdy_http_utils_unittest.cc
|
| diff --git a/net/spdy/spdy_http_utils_unittest.cc b/net/spdy/spdy_http_utils_unittest.cc
|
| index 1fbb705b4bbee259ea7e4e591602b3faa3f3674b..c6464aef6b401974a3ac89444104cd4a3145f226 100644
|
| --- a/net/spdy/spdy_http_utils_unittest.cc
|
| +++ b/net/spdy/spdy_http_utils_unittest.cc
|
| @@ -185,8 +185,9 @@ TEST(SpdyHttpUtilsTest, CreateSpdyHeadersFromHttpRequestConnectHTTP2) {
|
| kDirect, &headers);
|
| EXPECT_EQ("CONNECT", headers[":method"]);
|
| EXPECT_TRUE(headers.end() == headers.find(":scheme"));
|
| - EXPECT_EQ("www.google.com", headers[":authority"]);
|
| - EXPECT_EQ("www.google.com:443", headers[":path"]);
|
| + EXPECT_EQ("www.google.com:443", headers[":authority"]);
|
| + EXPECT_EQ(0u, headers.count(":path"));
|
| + EXPECT_EQ(0u, headers.count(":scheme"));
|
| EXPECT_TRUE(headers.end() == headers.find(":version"));
|
| EXPECT_EQ("Chrome/1.1", headers["user-agent"]);
|
| }
|
|
|