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

Unified Diff: net/quic/quic_config_test.cc

Issue 478153003: Change the wire format of the ack frame to include a compressed version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase TOT and pass clock to QuicTestPacketMaker and use it in AckPacket 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
« no previous file with comments | « net/quic/crypto/crypto_protocol.h ('k') | net/quic/quic_connection.cc » ('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 e2e0348f590d7e81912e2e4e1c86d4fc49c0b96e..6cbd4ff177d3b2019bf635d0c01c89f9d5e40ed0 100644
--- a/net/quic/quic_config_test.cc
+++ b/net/quic/quic_config_test.cc
@@ -80,7 +80,6 @@ TEST_F(QuicConfigTest, ToHandshakeMessage) {
TEST_F(QuicConfigTest, ProcessClientHello) {
QuicConfig client_config;
QuicTagVector cgst;
- cgst.push_back(kTSTP);
cgst.push_back(kQBIC);
client_config.set_congestion_feedback(cgst, kQBIC);
client_config.set_idle_connection_state_lifetime(
@@ -256,7 +255,7 @@ TEST_F(QuicConfigTest, MultipleNegotiatedValuesInVectorTag) {
QuicConfig server_config;
QuicTagVector cgst;
cgst.push_back(kQBIC);
- cgst.push_back(kTSTP);
+ cgst.push_back(kTBBR);
server_config.set_congestion_feedback(cgst, kQBIC);
CryptoHandshakeMessage msg;
@@ -271,8 +270,8 @@ TEST_F(QuicConfigTest, NoOverLapInCGST) {
QuicConfig server_config;
server_config.SetDefaults();
QuicTagVector cgst;
- cgst.push_back(kTSTP);
- server_config.set_congestion_feedback(cgst, kTSTP);
+ cgst.push_back(kTBBR);
+ server_config.set_congestion_feedback(cgst, kTBBR);
CryptoHandshakeMessage msg;
string error_details;
« no previous file with comments | « net/quic/crypto/crypto_protocol.h ('k') | net/quic/quic_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698