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

Unified Diff: net/quic/crypto/quic_crypto_client_config_test.cc

Issue 1138443003: Land Recent QUIC Changes until 05/13/2015 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile error fixes Created 5 years, 7 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/quic_crypto_client_config.cc ('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/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 bf3a34316334a4daabffc969362e73b6a6f39061..348f8f90e4d6414afb1c011dc8d79afce71404f2 100644
--- a/net/quic/crypto/quic_crypto_client_config_test.cc
+++ b/net/quic/crypto/quic_crypto_client_config_test.cc
@@ -370,11 +370,10 @@ TEST(QuicCryptoClientConfigTest, ProcessStatelessReject) {
QuicCryptoNegotiatedParameters out_params;
string error;
QuicCryptoClientConfig config;
- EXPECT_EQ(
- QUIC_CRYPTO_HANDSHAKE_STATELESS_REJECT,
- config.ProcessRejection(rej, QuicWallTime::FromUNIXSeconds(0), &cached,
- true, // is_https
- &out_params, &error));
+ EXPECT_EQ(QUIC_NO_ERROR, config.ProcessRejection(
+ rej, QuicWallTime::FromUNIXSeconds(0), &cached,
+ true, // is_https
+ &out_params, &error));
EXPECT_TRUE(cached.has_server_designated_connection_id());
EXPECT_EQ(kConnectionId, cached.GetNextServerDesignatedConnectionId());
}
« no previous file with comments | « net/quic/crypto/quic_crypto_client_config.cc ('k') | net/quic/quic_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698