Index: net/http/http_status_code_unittest.cc |
diff --git a/net/http/http_status_code_unittest.cc b/net/http/http_status_code_unittest.cc |
deleted file mode 100644 |
index 962b89d3acf2e7e8769d2823a1fd77578caf92bb..0000000000000000000000000000000000000000 |
--- a/net/http/http_status_code_unittest.cc |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-// Copyright 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "net/http/http_status_code.h" |
- |
-#include "testing/gtest/include/gtest/gtest.h" |
- |
-namespace net { |
- |
-namespace { |
- |
-TEST(HttpStatusCode, OK) { |
- EXPECT_EQ(200, HTTP_OK); |
- EXPECT_STREQ("OK", GetHttpReasonPhrase(HTTP_OK)); |
-} |
- |
-} // namespace |
- |
-} // namespace net |