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

Unified Diff: net/quic/quic_stream_factory_test.cc

Issue 185203003: Killing off QUICv12, including cleaning out all of the code for handling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Deleted unused StripUint32 Created 6 years, 10 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
« no previous file with comments | « net/quic/quic_spdy_decompressor_test.cc ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_stream_factory_test.cc
diff --git a/net/quic/quic_stream_factory_test.cc b/net/quic/quic_stream_factory_test.cc
index c82fd23167188cf4c2b81ffc4d12ff56aebc71c6..b8b323c465f82535210a64de6742dccee4d2703f 100644
--- a/net/quic/quic_stream_factory_test.cc
+++ b/net/quic/quic_stream_factory_test.cc
@@ -138,7 +138,7 @@ class QuicStreamFactoryTest : public ::testing::TestWithParam<QuicVersion> {
}
scoped_ptr<QuicEncryptedPacket> ConstructRstPacket() {
- QuicStreamId stream_id = GetParam() > QUIC_VERSION_12 ? 5 : 3;
+ QuicStreamId stream_id = 5;
return maker_.MakeRstPacket(1, true, stream_id, QUIC_STREAM_NO_ERROR);
}
@@ -525,7 +525,7 @@ TEST_P(QuicStreamFactoryTest, MaxOpenStream) {
MockRead reads[] = {
MockRead(ASYNC, OK, 0) // EOF
};
- QuicStreamId stream_id = GetParam() > QUIC_VERSION_12 ? 5 : 3;
+ QuicStreamId stream_id = 5;
scoped_ptr<QuicEncryptedPacket> rst(
maker_.MakeRstPacket(1, true, stream_id, QUIC_STREAM_CANCELLED));
MockWrite writes[] = {
« no previous file with comments | « net/quic/quic_spdy_decompressor_test.cc ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698