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

Unified Diff: net/quic/quic_packet_creator_test.cc

Issue 862133002: Update from https://crrev.com/312398 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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_packet_creator_test.cc
diff --git a/net/quic/quic_packet_creator_test.cc b/net/quic/quic_packet_creator_test.cc
index 6be3c83e80282c5c54f79165c0ad35b1a65d3ef8..241c42bb7102bf1cc18348fe9243682d7e8130e4 100644
--- a/net/quic/quic_packet_creator_test.cc
+++ b/net/quic/quic_packet_creator_test.cc
@@ -915,12 +915,6 @@ TEST_P(QuicPacketCreatorTest, AddFrameAndSerialize) {
EXPECT_TRUE(creator_.AddSavedFrame(QuicFrame(&ack_frame)));
EXPECT_TRUE(creator_.HasPendingFrames());
- QuicCongestionFeedbackFrame congestion_feedback;
- congestion_feedback.type = kTCP;
- congestion_feedback.tcp.receive_window = 0x4030;
- EXPECT_TRUE(creator_.AddSavedFrame(QuicFrame(&congestion_feedback)));
- EXPECT_TRUE(creator_.HasPendingFrames());
-
QuicFrame frame;
size_t consumed = creator_.CreateStreamFrame(
1u, MakeIOVector("test"), 0u, false, &frame);

Powered by Google App Engine
This is Rietveld 408576698