Index: net/http/http_network_transaction_unittest.cc |
diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc |
index 6e1ad43b13812b1f304ae82825c28efcc4559bb4..82edaf7451e42736dd89390bb610ffb5eb9681ce 100644 |
--- a/net/http/http_network_transaction_unittest.cc |
+++ b/net/http/http_network_transaction_unittest.cc |
@@ -2562,7 +2562,7 @@ TEST_P(HttpNetworkTransactionTest, BasicAuthProxyKeepAlive) { |
ASSERT_TRUE(response->headers); |
EXPECT_TRUE(response->headers->IsKeepAlive()); |
EXPECT_EQ(407, response->headers->response_code()); |
- EXPECT_EQ(-1, response->headers->GetContentLength()); |
+ EXPECT_EQ(10, response->headers->GetContentLength()); |
EXPECT_TRUE(HttpVersion(1, 1) == response->headers->GetHttpVersion()); |
EXPECT_TRUE(CheckBasicProxyAuth(response->auth_challenge.get())); |
@@ -2581,7 +2581,7 @@ TEST_P(HttpNetworkTransactionTest, BasicAuthProxyKeepAlive) { |
ASSERT_TRUE(response->headers); |
EXPECT_TRUE(response->headers->IsKeepAlive()); |
EXPECT_EQ(407, response->headers->response_code()); |
- EXPECT_EQ(-1, response->headers->GetContentLength()); |
+ EXPECT_EQ(10, response->headers->GetContentLength()); |
EXPECT_TRUE(HttpVersion(1, 1) == response->headers->GetHttpVersion()); |
EXPECT_TRUE(CheckBasicProxyAuth(response->auth_challenge.get())); |