| Index: webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc
|
| diff --git a/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc b/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc
|
| index f75113afe4a839cae4ee18b6b3e147de810d7b89..361f45dbabea4ffb8dd6918d1d3313b101be12cb 100644
|
| --- a/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc
|
| +++ b/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc
|
| @@ -139,9 +139,9 @@ TEST_F(RtpRtcpAPITest, SSRC) {
|
| }
|
|
|
| TEST_F(RtpRtcpAPITest, RTCP) {
|
| - EXPECT_EQ(kRtcpOff, module_->RTCP());
|
| - module_->SetRTCPStatus(kRtcpCompound);
|
| - EXPECT_EQ(kRtcpCompound, module_->RTCP());
|
| + EXPECT_EQ(RtcpMode::kOff, module_->RTCP());
|
| + module_->SetRTCPStatus(RtcpMode::kCompound);
|
| + EXPECT_EQ(RtcpMode::kCompound, module_->RTCP());
|
|
|
| EXPECT_EQ(0, module_->SetCNAME("john.doe@test.test"));
|
|
|
|
|