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

Unified Diff: media/cast/net/rtcp/rtcp_utility_unittest.cc

Issue 499433002: Minor code redundancy cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 6 years, 4 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 | « media/cast/net/rtcp/rtcp_utility.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/rtcp/rtcp_utility_unittest.cc
diff --git a/media/cast/net/rtcp/rtcp_utility_unittest.cc b/media/cast/net/rtcp/rtcp_utility_unittest.cc
index 8f8f7400273dd3d3ac84fac8cef0fbdace55d4b5..ed2ab8d6638e50b53a8e686dee69267f84ccdadd 100644
--- a/media/cast/net/rtcp/rtcp_utility_unittest.cc
+++ b/media/cast/net/rtcp/rtcp_utility_unittest.cc
@@ -247,7 +247,8 @@ TEST_F(RtcpParserTest, InjectSenderReportPacketWithDlrr) {
RtcpParser parser2(kSourceSsrc, kSenderSsrc);
EXPECT_TRUE(parser2.Parse(p.Reader()));
ExpectSenderInfo(parser2);
- ExpectLastReport(parser2);
+ // DLRRs are ignored.
+ EXPECT_FALSE(parser2.has_last_report());
}
TEST_F(RtcpParserTest, InjectReceiverReportPacketWithRrtr) {
« no previous file with comments | « media/cast/net/rtcp/rtcp_utility.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698