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

Unified Diff: net/quic/quic_session_test.cc

Issue 822713002: Update from https://crrev.com/309415 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years 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
Index: net/quic/quic_session_test.cc
diff --git a/net/quic/quic_session_test.cc b/net/quic/quic_session_test.cc
index e404929a84315f0da03f35c7a9cd7ccd5abcccbb..15dfe795431c3a4c40398740e28549b5f6874cde 100644
--- a/net/quic/quic_session_test.cc
+++ b/net/quic/quic_session_test.cc
@@ -327,9 +327,9 @@ TEST_P(QuicSessionTest, DecompressionError) {
0x00, 0x00,
'a', 'b', 'c', 'd' // invalid compressed data
};
- EXPECT_CALL(*connection_,
- SendConnectionCloseWithDetails(QUIC_INVALID_HEADERS_STREAM_DATA,
- "SPDY framing error."));
+ EXPECT_CALL(*connection_, SendConnectionCloseWithDetails(
+ QUIC_INVALID_HEADERS_STREAM_DATA,
+ "SPDY framing error: DECOMPRESS_FAILURE"));
stream->ProcessRawData(reinterpret_cast<const char*>(data),
arraysize(data));
}

Powered by Google App Engine
This is Rietveld 408576698