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

Unified Diff: net/quic/chromium/quic_stream_factory_test.cc

Issue 2678003003: Make QUIC force HOL-blocking mode only apply to v36. This is basically a no-op since neither v36 no… (Closed)
Patch Set: fix two chromium tests. Created 3 years, 10 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/chromium/quic_network_transaction_unittest.cc ('k') | net/quic/core/quic_session_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/chromium/quic_stream_factory_test.cc
diff --git a/net/quic/chromium/quic_stream_factory_test.cc b/net/quic/chromium/quic_stream_factory_test.cc
index e40a2bd2f7a6402dc1fc630f582114de44b0536a..4b9f10f6dc6b3573c3736132c881f3fd2a3567bf 100644
--- a/net/quic/chromium/quic_stream_factory_test.cc
+++ b/net/quic/chromium/quic_stream_factory_test.cc
@@ -5312,7 +5312,7 @@ TEST_P(QuicStreamFactoryTest, ForceHolBlockingEnabled) {
EXPECT_EQ(OK, callback_.WaitForResult());
QuicChromiumClientSession* session = GetActiveSession(host_port_pair_);
- if (session->connection()->version() > QUIC_VERSION_35) {
+ if (session->connection()->version() == QUIC_VERSION_36) {
EXPECT_TRUE(session->force_hol_blocking());
} else {
EXPECT_FALSE(session->force_hol_blocking());
« no previous file with comments | « net/quic/chromium/quic_network_transaction_unittest.cc ('k') | net/quic/core/quic_session_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698