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

Unified Diff: net/quic/quic_spdy_stream_test.cc

Issue 2176323002: Deprecate FLAGS_quic_disable_pre_30. Remove QUIC versions [25-29]. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@127879468
Patch Set: Created 4 years, 5 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
Index: net/quic/quic_spdy_stream_test.cc
diff --git a/net/quic/quic_spdy_stream_test.cc b/net/quic/quic_spdy_stream_test.cc
index 94be546be476ed3a329fd697f6348c2efac7f1c4..97ddd7ecf418db8c31ec41e8b927c9d1551948b0 100644
--- a/net/quic/quic_spdy_stream_test.cc
+++ b/net/quic/quic_spdy_stream_test.cc
@@ -629,17 +629,10 @@ TEST_P(QuicSpdyStreamTest, TestHandlingQuicRstStreamNoError) {
stream_->OnStreamHeaders(headers);
stream_->OnStreamHeadersComplete(false, headers.size());
- if (GetParam() <= QUIC_VERSION_28) {
- EXPECT_CALL(*session_, SendRstStream(_, _, _));
- }
stream_->OnStreamReset(
QuicRstStreamFrame(stream_->id(), QUIC_STREAM_NO_ERROR, 0));
EXPECT_TRUE(stream_->write_side_closed());
- if (GetParam() > QUIC_VERSION_28) {
- EXPECT_FALSE(stream_->reading_stopped());
- } else {
- EXPECT_TRUE(stream_->reading_stopped());
- }
+ EXPECT_FALSE(stream_->reading_stopped());
}
TEST_P(QuicSpdyStreamTest, ConnectionFlowControlViolation) {

Powered by Google App Engine
This is Rietveld 408576698