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

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

Issue 2445983003: Default enable QUIC's Cubic in bytes congestion control implementation. Protected by ENABLED FLAGS… (Closed)
Patch Set: Updated patchset dependency Created 4 years, 2 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_sent_packet_manager_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 e21b230ca4b76adb7bc6256a40aebe290d3c7a13..ff6465ce3c05e6b0fd09cc1e997ec68ba60caa9e 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -1380,7 +1380,8 @@ TEST_P(EndToEndTest, NegotiateCongestionControl) {
expected_congestion_control_type = kBBR;
break;
case kQBIC:
- expected_congestion_control_type = kCubic;
+ expected_congestion_control_type =
+ FLAGS_quic_default_enable_cubic_bytes ? kCubicBytes : kCubic;
break;
default:
DLOG(FATAL) << "Unexpected congestion control tag";
« no previous file with comments | « net/quic/core/quic_sent_packet_manager_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698