Index: talk/app/webrtc/objctests/RTCPeerConnectionTest.mm |
diff --git a/talk/app/webrtc/objctests/RTCPeerConnectionTest.mm b/talk/app/webrtc/objctests/RTCPeerConnectionTest.mm |
index 050c9f4c95dd61acdacd6b23718e618373a4a88d..f0703f5ad854abff184f63c8eaee77a1c18405c7 100644 |
--- a/talk/app/webrtc/objctests/RTCPeerConnectionTest.mm |
+++ b/talk/app/webrtc/objctests/RTCPeerConnectionTest.mm |
@@ -182,7 +182,10 @@ |
EXPECT_GT([answerSDP.description length], 0); |
[offeringExpectations expectICECandidates:2]; |
- [answeringExpectations expectICECandidates:2]; |
+ // It's possible to only have 1 ICE candidate for the answerer, since we use |
+ // BUNDLE and rtcp-mux by default, and don't provide any ICE servers in this |
+ // test. |
+ [answeringExpectations expectICECandidates:1]; |
sdpObserver = [[RTCSessionDescriptionSyncObserver alloc] init]; |
[answeringExpectations expectSignalingChange:RTCSignalingStable]; |