Index: net/quic/crypto/quic_crypto_client_config_test.cc |
diff --git a/net/quic/crypto/quic_crypto_client_config_test.cc b/net/quic/crypto/quic_crypto_client_config_test.cc |
index 75cf23970550f3dad27a2b1695a8f5d0e51fc24f..fdce91c1fc7a6566ebdbfd5500fee141b160e4f3 100644 |
--- a/net/quic/crypto/quic_crypto_client_config_test.cc |
+++ b/net/quic/crypto/quic_crypto_client_config_test.cc |
@@ -110,7 +110,6 @@ TEST(QuicCryptoClientConfigTest, FillClientHello) { |
QuicCryptoClientConfig config; |
QuicCryptoNegotiatedParameters params; |
QuicConnectionId kConnectionId = 1234; |
- uint32 kInitialFlowControlWindow = 5678; |
string error_details; |
MockRandom rand; |
CryptoHandshakeMessage chlo; |
@@ -118,7 +117,6 @@ TEST(QuicCryptoClientConfigTest, FillClientHello) { |
config.FillClientHello(server_id, |
kConnectionId, |
QuicVersionMax(), |
- kInitialFlowControlWindow, |
&state, |
QuicWallTime::Zero(), |
&rand, |
@@ -131,10 +129,6 @@ TEST(QuicCryptoClientConfigTest, FillClientHello) { |
QuicTag cver; |
EXPECT_EQ(QUIC_NO_ERROR, chlo.GetUint32(kVER, &cver)); |
EXPECT_EQ(QuicVersionToQuicTag(QuicVersionMax()), cver); |
- |
- QuicTag ifcw; |
- EXPECT_EQ(QUIC_NO_ERROR, chlo.GetUint32(kIFCW, &ifcw)); |
- EXPECT_EQ(kInitialFlowControlWindow, ifcw); |
} |
TEST(QuicCryptoClientConfigTest, ProcessServerDowngradeAttack) { |