diff options
Diffstat (limited to 'net/quic/quic_network_transaction_unittest.cc')
-rw-r--r-- | net/quic/quic_network_transaction_unittest.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/quic/quic_network_transaction_unittest.cc b/net/quic/quic_network_transaction_unittest.cc index e18f357..82b1075 100644 --- a/net/quic/quic_network_transaction_unittest.cc +++ b/net/quic/quic_network_transaction_unittest.cc @@ -96,7 +96,7 @@ class QuicNetworkTransactionTest : public PlatformTest { header.fec_entropy_flag = false; header.fec_group = 0; - QuicRstStreamFrame rst(stream_id, QUIC_NO_ERROR); + QuicRstStreamFrame rst(stream_id, QUIC_STREAM_NO_ERROR); return scoped_ptr<QuicEncryptedPacket>( ConstructPacket(header, QuicFrame(&rst))); } @@ -124,6 +124,7 @@ class QuicNetworkTransactionTest : public PlatformTest { QuicFramer framer(kQuicVersion1, QuicDecrypter::Create(kNULL), QuicEncrypter::Create(kNULL), + QuicTime::Zero(), false); QuicFrames frames; frames.push_back(QuicFrame(&ack)); @@ -180,6 +181,7 @@ class QuicNetworkTransactionTest : public PlatformTest { QuicFramer framer(kQuicVersion1, QuicDecrypter::Create(kNULL), QuicEncrypter::Create(kNULL), + QuicTime::Zero(), false); QuicFrames frames; frames.push_back(frame); |