| Index: net/spdy/spdy_test_util_common.cc
|
| diff --git a/net/spdy/spdy_test_util_common.cc b/net/spdy/spdy_test_util_common.cc
|
| index 15d617366834dd432f88f25ae7823a4547fb816d..3f1a87327d6cb0f8128437a61413822740182b84 100644
|
| --- a/net/spdy/spdy_test_util_common.cc
|
| +++ b/net/spdy/spdy_test_util_common.cc
|
| @@ -1001,12 +1001,12 @@ SpdySerializedFrame SpdyTestUtil::ConstructSpdyGetReplyRedirect(int stream_id) {
|
| static const char* const kExtraHeaders[] = {
|
| "location", "http://www.foo.com/index.php",
|
| };
|
| - return ConstructSpdyReplyError("301 Moved Permanently", kExtraHeaders,
|
| + return ConstructSpdyReplyError("301", kExtraHeaders,
|
| arraysize(kExtraHeaders) / 2, stream_id);
|
| }
|
|
|
| SpdySerializedFrame SpdyTestUtil::ConstructSpdyReplyError(int stream_id) {
|
| - return ConstructSpdyReplyError("500 Internal Server Error", NULL, 0, 1);
|
| + return ConstructSpdyReplyError("500", NULL, 0, 1);
|
| }
|
|
|
| SpdySerializedFrame SpdyTestUtil::ConstructSpdyGetReply(
|
|
|