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

Unified Diff: net/tools/quic/quic_client_session_test.cc

Issue 1753933002: Add QUIC 31 in which the server's proof covers both the static server config as well as a hash of t… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@115244730
Patch Set: implement verify_source_chromium_open_ssl Created 4 years, 10 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/test_tools/quic_stream_factory_peer.cc ('k') | net/tools/quic/test_tools/quic_test_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_client_session_test.cc
diff --git a/net/tools/quic/quic_client_session_test.cc b/net/tools/quic/quic_client_session_test.cc
index 6dd53568d9b4d5e6bf44e278abe90e8838445f6b..c80bdb4e2a9a65b1ad85a714160bc3a6a981b396 100644
--- a/net/tools/quic/quic_client_session_test.cc
+++ b/net/tools/quic/quic_client_session_test.cc
@@ -150,8 +150,8 @@ TEST_P(QuicClientSessionTest, NoEncryptionAfterInitialEncryption) {
EXPECT_TRUE(session_->IsEncryptionEstablished());
QuicSpdyClientStream* stream =
session_->CreateOutgoingDynamicStream(kDefaultPriority);
- DCHECK_NE(kCryptoStreamId, stream->id());
- EXPECT_TRUE(stream != nullptr);
+ ASSERT_TRUE(stream != nullptr);
+ EXPECT_NE(kCryptoStreamId, stream->id());
// Process an "inchoate" REJ from the server which will cause
// an inchoate CHLO to be sent and will leave the encryption level
« no previous file with comments | « net/quic/test_tools/quic_stream_factory_peer.cc ('k') | net/tools/quic/test_tools/quic_test_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698