| Index: webrtc/examples/objc/AppRTCDemo/tests/ARDAppClientTest.mm
|
| diff --git a/webrtc/examples/objc/AppRTCDemo/tests/ARDAppClientTest.mm b/webrtc/examples/objc/AppRTCDemo/tests/ARDAppClientTest.mm
|
| index 355031e398ef35e020f61edf695e07c2b8c50b0b..c1fc08ca8e94e5b5ae7a6500711e45658165cdae 100644
|
| --- a/webrtc/examples/objc/AppRTCDemo/tests/ARDAppClientTest.mm
|
| +++ b/webrtc/examples/objc/AppRTCDemo/tests/ARDAppClientTest.mm
|
| @@ -283,8 +283,16 @@
|
| weakAnswerer = answerer;
|
|
|
| // Kick off connection.
|
| - [caller connectToRoomWithId:roomId isLoopback:NO isAudioOnly:NO shouldMakeAecDump:NO];
|
| - [answerer connectToRoomWithId:roomId isLoopback:NO isAudioOnly:NO shouldMakeAecDump:NO];
|
| + [caller connectToRoomWithId:roomId
|
| + isLoopback:NO
|
| + isAudioOnly:NO
|
| + shouldMakeAecDump:NO
|
| + shouldUseLevelControl:NO];
|
| + [answerer connectToRoomWithId:roomId
|
| + isLoopback:NO
|
| + isAudioOnly:NO
|
| + shouldMakeAecDump:NO
|
| + shouldUseLevelControl:NO];
|
| [self waitForExpectationsWithTimeout:20 handler:^(NSError *error) {
|
| if (error) {
|
| NSLog(@"Expectations error: %@", error);
|
|
|