Index: net/tools/quic/quic_simple_server_session_test.cc |
diff --git a/net/tools/quic/quic_simple_server_session_test.cc b/net/tools/quic/quic_simple_server_session_test.cc |
index 35db6162aa326a698f28592e9254e1bbb679a875..5d1cac27f33fa9561f04ef3a48ad79b1aa7d800f 100644 |
--- a/net/tools/quic/quic_simple_server_session_test.cc |
+++ b/net/tools/quic/quic_simple_server_session_test.cc |
@@ -235,7 +235,6 @@ |
// Receive a reset (and send a RST in response). |
QuicRstStreamFrame rst1(kClientDataStreamId1, QUIC_ERROR_PROCESSING_STREAM, |
0); |
- EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1); |
EXPECT_CALL(*connection_, |
SendRstStream(kClientDataStreamId1, QUIC_RST_ACKNOWLEDGEMENT, 0)); |
visitor_->OnRstStream(rst1); |
@@ -253,7 +252,6 @@ |
// Send a reset (and expect the peer to send a RST in response). |
QuicRstStreamFrame rst1(kClientDataStreamId1, QUIC_ERROR_PROCESSING_STREAM, |
0); |
- EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1); |
EXPECT_CALL(*connection_, |
SendRstStream(kClientDataStreamId1, QUIC_RST_ACKNOWLEDGEMENT, 0)); |
visitor_->OnRstStream(rst1); |
@@ -280,7 +278,6 @@ |
// Send a reset (and expect the peer to send a RST in response). |
QuicRstStreamFrame rst(kClientDataStreamId1, QUIC_ERROR_PROCESSING_STREAM, 0); |
- EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1); |
EXPECT_CALL(*connection_, |
SendRstStream(kClientDataStreamId1, QUIC_RST_ACKNOWLEDGEMENT, 0)); |
visitor_->OnRstStream(rst); |
@@ -572,7 +569,6 @@ |
// Reset the last stream in the queue. It should be marked cancelled. |
QuicStreamId stream_got_reset = num_resources * 2; |
QuicRstStreamFrame rst(stream_got_reset, QUIC_STREAM_CANCELLED, 0); |
- EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1); |
EXPECT_CALL(*connection_, |
SendRstStream(stream_got_reset, QUIC_RST_ACKNOWLEDGEMENT, 0)); |
visitor_->OnRstStream(rst); |
@@ -617,7 +613,6 @@ |
.WillOnce(Return(QuicConsumedData(kStreamFlowControlWindowSize, false))); |
EXPECT_CALL(*connection_, SendBlocked(stream_to_open)); |
- EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1); |
QuicRstStreamFrame rst(stream_got_reset, QUIC_STREAM_CANCELLED, 0); |
visitor_->OnRstStream(rst); |
} |