diff options
Diffstat (limited to 'net/http/http_util_unittest.cc')
-rw-r--r-- | net/http/http_util_unittest.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/net/http/http_util_unittest.cc b/net/http/http_util_unittest.cc index bdae329..0c018a2 100644 --- a/net/http/http_util_unittest.cc +++ b/net/http/http_util_unittest.cc @@ -36,21 +36,21 @@ TEST(HttpUtilTest, HasHeader) { TEST(HttpUtilTest, StripHeaders) { static const char* headers = - "Origin: origin\r\n" - "Content-Type: text/plain\r\n" - "Cookies: foo1\r\n" - "Custom: baz\r\n" - "COOKIES: foo2\r\n" - "Server: Apache\r\n" - "OrIGin: origin2\r\n"; + "Origin: origin\r\n" + "Content-Type: text/plain\r\n" + "Cookies: foo1\r\n" + "Custom: baz\r\n" + "COOKIES: foo2\r\n" + "Server: Apache\r\n" + "OrIGin: origin2\r\n"; static const char* header_names[] = { "origin", "content-type", "cookies" }; static const char* expected_stripped_headers = - "Custom: baz\r\n" - "Server: Apache\r\n"; + "Custom: baz\r\n" + "Server: Apache\r\n"; EXPECT_EQ(expected_stripped_headers, HttpUtil::StripHeaders(headers, header_names, |