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

Unified Diff: net/tools/quic/end_to_end_test.cc

Issue 2731223002: deprecate FLAGS_quic_reloadable_flag_quic_limit_uncompressed_headers (Closed)
Patch Set: Rebase Created 3 years, 9 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/core/quic_spdy_stream_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/end_to_end_test.cc
diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc
index 6f12b97f99b94f9c7313379e2100531d891033fd..dbd66d1a76729bfb7d2cf19a8749aa9c6a595b76 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -1159,13 +1159,7 @@ TEST_P(EndToEndTest, LargeHeaders) {
headers["key3"] = string(15 * 1024, 'a');
client_->SendCustomSynchronousRequest(headers, body);
- if (FLAGS_quic_reloadable_flag_quic_limit_uncompressed_headers) {
- EXPECT_EQ(QUIC_HEADERS_TOO_LARGE, client_->stream_error());
- } else {
- EXPECT_EQ(QUIC_STREAM_NO_ERROR, client_->stream_error());
- EXPECT_EQ(kFooResponseBody, client_->response_body());
- EXPECT_EQ("200", client_->response_headers()->find(":status")->second);
- }
+ EXPECT_EQ(QUIC_HEADERS_TOO_LARGE, client_->stream_error());
EXPECT_EQ(QUIC_NO_ERROR, client_->connection_error());
}
« no previous file with comments | « net/quic/core/quic_spdy_stream_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698