Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: net/quic/spdy_utils_test.cc

Issue 1961573002: Avoids the "re-encode HPACK as SPDY3" step. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update new test Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/spdy_utils.cc ('k') | net/quic/test_tools/mock_quic_spdy_client_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/spdy_utils_test.cc
diff --git a/net/quic/spdy_utils_test.cc b/net/quic/spdy_utils_test.cc
index a64c3a7a689a0829a9af6c1ffbe90d3c07ed13a6..c5da8a0f15745d6e3df04dcac377030f5afa33bb 100644
--- a/net/quic/spdy_utils_test.cc
+++ b/net/quic/spdy_utils_test.cc
@@ -144,15 +144,6 @@ TEST(SpdyUtilsTest, CopyAndValidateHeadersEmptyName) {
SpdyUtils::CopyAndValidateHeaders(*headers, &content_length, &block));
}
-TEST(SpdyUtilsTest, CopyAndValidateHeadersUpperCaseName) {
- auto headers =
- FromList({{"foo", "foovalue"}, {"bar", "barvalue"}, {"bAz", ""}});
- int64_t content_length = -1;
- SpdyHeaderBlock block;
- ASSERT_FALSE(
- SpdyUtils::CopyAndValidateHeaders(*headers, &content_length, &block));
-}
-
TEST(SpdyUtilsTest, CopyAndValidateHeadersMultipleContentLengths) {
auto headers = FromList({{"content-length", "9"},
{"foo", "foovalue"},
« no previous file with comments | « net/quic/spdy_utils.cc ('k') | net/quic/test_tools/mock_quic_spdy_client_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698