| Index: net/http/http_log_util_unittest.cc
|
| diff --git a/net/http/http_log_util_unittest.cc b/net/http/http_log_util_unittest.cc
|
| index 5905f973c98675e9794a9ee3ce1dbed2822baeed..9b6ec8f86461b2c235d60c8eb3f5ea88fd20b1d6 100644
|
| --- a/net/http/http_log_util_unittest.cc
|
| +++ b/net/http/http_log_util_unittest.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "net/http/http_log_util.h"
|
|
|
| -#include "net/log/net_log_capture_mode.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace net {
|
| @@ -70,14 +69,4 @@ TEST(HttpLogUtilTest, ElideHeaderValueForNetLog) {
|
| "WWW-Authenticate", "NTLM 1234 "));
|
| }
|
|
|
| -TEST(HttpLogUtilTest, ElideGoAwayDebugDataForNetLog) {
|
| - // Only elide for appropriate log level.
|
| - EXPECT_EQ(
|
| - "[6 bytes were stripped]",
|
| - ElideGoAwayDebugDataForNetLog(NetLogCaptureMode::Default(), "foobar"));
|
| - EXPECT_EQ("foobar",
|
| - ElideGoAwayDebugDataForNetLog(
|
| - NetLogCaptureMode::IncludeCookiesAndCredentials(), "foobar"));
|
| -}
|
| -
|
| -} // namspace net
|
| +} // namespace net
|
|
|