| 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));
|
| }
|
|
|