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

Unified Diff: net/quic/quic_config_test.cc

Issue 839143002: Roll Chrome into Mojo. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rebase Created 5 years, 11 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/quic_config.cc ('k') | net/quic/quic_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_config_test.cc
diff --git a/net/quic/quic_config_test.cc b/net/quic/quic_config_test.cc
index 36321d1037bdf1ac6f1f7c939955167a51deba8f..1bdc4564e81eee2e4be8955d2d67e98e3f07c4ca 100644
--- a/net/quic/quic_config_test.cc
+++ b/net/quic/quic_config_test.cc
@@ -271,11 +271,11 @@ TEST_F(QuicConfigTest, InvalidFlowControlWindow) {
// QuicConfig should not accept an invalid flow control window to send to the
// peer: the receive window must be at least the default of 16 Kb.
QuicConfig config;
- const uint64 kInvalidWindow = kDefaultFlowControlSendWindow - 1;
+ const uint64 kInvalidWindow = kMinimumFlowControlSendWindow - 1;
EXPECT_DFATAL(config.SetInitialFlowControlWindowToSend(kInvalidWindow),
"Initial flow control receive window");
- EXPECT_EQ(kDefaultFlowControlSendWindow,
+ EXPECT_EQ(kMinimumFlowControlSendWindow,
config.GetInitialFlowControlWindowToSend());
}
« no previous file with comments | « net/quic/quic_config.cc ('k') | net/quic/quic_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698