| Index: net/quic/quic_crypto_stream_test.cc
|
| diff --git a/net/quic/quic_crypto_stream_test.cc b/net/quic/quic_crypto_stream_test.cc
|
| index 8c7d1816d38044f9e27f8c3c31a4c5b1f8bf938a..0677a54d23aea88abd5216941c0b54345b7fbef1 100644
|
| --- a/net/quic/quic_crypto_stream_test.cc
|
| +++ b/net/quic/quic_crypto_stream_test.cc
|
| @@ -95,7 +95,8 @@ TEST_F(QuicCryptoStreamTest, ProcessBadData) {
|
| EXPECT_EQ(1, bad[kFirstTagIndex]);
|
| bad[kFirstTagIndex] = 0x7F; // out of order tag
|
|
|
| - EXPECT_CALL(*connection_, SendConnectionClose(QUIC_CRYPTO_TAGS_OUT_OF_ORDER));
|
| + EXPECT_CALL(*connection_, SendConnectionCloseWithDetails(
|
| + QUIC_CRYPTO_TAGS_OUT_OF_ORDER, testing::_));
|
| stream_.OnStreamFrame(
|
| QuicStreamFrame(kCryptoStreamId, /*fin=*/false, /*offset=*/0, bad));
|
| }
|
|
|