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

Unified Diff: net/quic/quic_multipath_received_packet_manager_test.cc

Issue 1782143003: Remove FEC code from receive path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@115997404
Patch Set: Created 4 years, 9 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_multipath_received_packet_manager.cc ('k') | net/quic/quic_packet_creator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_multipath_received_packet_manager_test.cc
diff --git a/net/quic/quic_multipath_received_packet_manager_test.cc b/net/quic/quic_multipath_received_packet_manager_test.cc
index e342ae86f55279eff3aeead4b9e3d87699ca7ab3..8a54a68e1460a325e6774f2b7087e88218ef1aea 100644
--- a/net/quic/quic_multipath_received_packet_manager_test.cc
+++ b/net/quic/quic_multipath_received_packet_manager_test.cc
@@ -100,14 +100,6 @@ TEST_F(QuicMultipathReceivedPacketManagerTest, RecordPacketReceived) {
"Received a packet on a non-existent path");
}
-TEST_F(QuicMultipathReceivedPacketManagerTest, RecordPacketRevived) {
- EXPECT_CALL(*manager_0_, RecordPacketRevived(_)).Times(1);
- multipath_manager_.RecordPacketRevived(kDefaultPathId, header_.packet_number);
- EXPECT_DFATAL(
- multipath_manager_.RecordPacketRevived(kPathId2, header_.packet_number),
- "Revived a packet on a non-existent path");
-}
-
TEST_F(QuicMultipathReceivedPacketManagerTest, IsMissing) {
EXPECT_CALL(*manager_0_, IsMissing(header_.packet_number))
.WillOnce(Return(true));
« no previous file with comments | « net/quic/quic_multipath_received_packet_manager.cc ('k') | net/quic/quic_packet_creator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698