| Index: net/spdy/spdy_proxy_client_socket_spdy3_unittest.cc
|
| diff --git a/net/spdy/spdy_proxy_client_socket_spdy3_unittest.cc b/net/spdy/spdy_proxy_client_socket_spdy3_unittest.cc
|
| index b0107e7f4f500bb6c17821574a575a3f47e54c48..58665f72d306b56c8a6021ec6b78cd94112adb19 100644
|
| --- a/net/spdy/spdy_proxy_client_socket_spdy3_unittest.cc
|
| +++ b/net/spdy/spdy_proxy_client_socket_spdy3_unittest.cc
|
| @@ -370,8 +370,8 @@ SpdyProxyClientSocketSpdy3Test::ConstructConnectAuthRequestFrame() {
|
| // Constructs a standard SPDY SYN_REPLY frame to match the SPDY CONNECT.
|
| SpdyFrame* SpdyProxyClientSocketSpdy3Test::ConstructConnectReplyFrame() {
|
| const char* const kStandardReplyHeaders[] = {
|
| - "status", "200 Connection Established",
|
| - "version", "HTTP/1.1"
|
| + ":status", "200 Connection Established",
|
| + ":version", "HTTP/1.1"
|
| };
|
| return ConstructSpdyControlFrame(NULL,
|
| 0,
|
| @@ -388,8 +388,8 @@ SpdyFrame* SpdyProxyClientSocketSpdy3Test::ConstructConnectReplyFrame() {
|
| SpdyFrame*
|
| SpdyProxyClientSocketSpdy3Test::ConstructConnectAuthReplyFrame() {
|
| const char* const kStandardReplyHeaders[] = {
|
| - "status", "407 Proxy Authentication Required",
|
| - "version", "HTTP/1.1",
|
| + ":status", "407 Proxy Authentication Required",
|
| + ":version", "HTTP/1.1",
|
| "proxy-authenticate", "Basic realm=\"MyRealm1\"",
|
| };
|
|
|
| @@ -408,8 +408,8 @@ SpdyProxyClientSocketSpdy3Test::ConstructConnectAuthReplyFrame() {
|
| SpdyFrame*
|
| SpdyProxyClientSocketSpdy3Test::ConstructConnectErrorReplyFrame() {
|
| const char* const kStandardReplyHeaders[] = {
|
| - "status", "500 Internal Server Error",
|
| - "version", "HTTP/1.1",
|
| + ":status", "500 Internal Server Error",
|
| + ":version", "HTTP/1.1",
|
| };
|
|
|
| return ConstructSpdyControlFrame(NULL,
|
|
|