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

Unified Diff: net/quic/quic_config_test.cc

Issue 471613002: Change how QUIC negotiates pacing from congestion feedback to QUIC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Add_max_bandwidth_max_bandwidth_timestamp_73055131
Patch Set: Created 6 years, 4 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
Index: net/quic/quic_config_test.cc
diff --git a/net/quic/quic_config_test.cc b/net/quic/quic_config_test.cc
index 86f435f83b0faee96ed8727908c4073f86403e46..5c302b0d8065e11d9feb5a5f8fb8f57af260b797 100644
--- a/net/quic/quic_config_test.cc
+++ b/net/quic/quic_config_test.cc
@@ -88,9 +88,8 @@ TEST_F(QuicConfigTest, ToHandshakeMessageWithPacing) {
const QuicTag* out;
size_t out_len;
EXPECT_EQ(QUIC_NO_ERROR, msg.GetTaglist(kCGST, &out, &out_len));
- EXPECT_EQ(2u, out_len);
- EXPECT_EQ(kPACE, out[0]);
- EXPECT_EQ(kQBIC, out[1]);
+ EXPECT_EQ(1u, out_len);
+ EXPECT_EQ(kQBIC, out[0]);
}
TEST_F(QuicConfigTest, ProcessClientHello) {

Powered by Google App Engine
This is Rietveld 408576698