| 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..42754be581dba802a04ad86d550f9fe930ec201f 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::OFF, module_->RTCP());
|
| + module_->SetRTCPStatus(RtcpMode::COMPOUND);
|
| + EXPECT_EQ(RtcpMode::COMPOUND, module_->RTCP());
|
|
|
| EXPECT_EQ(0, module_->SetCNAME("john.doe@test.test"));
|
|
|
|
|