Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Unified Diff: net/http/http_proxy_client_socket_pool_unittest.cc

Issue 2555563003: Ignore 1xx informational headers. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/http/http_proxy_client_socket_pool_unittest.cc
diff --git a/net/http/http_proxy_client_socket_pool_unittest.cc b/net/http/http_proxy_client_socket_pool_unittest.cc
index d798e8e7ec8e537072d21d48eff4adac02da5fa6..19b0a4f6197322b28a56f3f41cf15c3659fef065 100644
--- a/net/http/http_proxy_client_socket_pool_unittest.cc
+++ b/net/http/http_proxy_client_socket_pool_unittest.cc
@@ -649,7 +649,7 @@ TEST_P(HttpProxyClientSocketPoolTest, TunnelSetupRedirect) {
};
const int responseHeadersSize = arraysize(responseHeaders) / 2;
SpdySerializedFrame resp(spdy_util_.ConstructSpdyReplyError(
- "302 Found", responseHeaders, responseHeadersSize, 1));
+ "302", responseHeaders, responseHeadersSize, 1));
MockRead spdy_reads[] = {
CreateMockRead(resp, 1, ASYNC), MockRead(ASYNC, 0, 2),
};

Powered by Google App Engine
This is Rietveld 408576698