mirror of https://github.com/OpenVidu/openvidu.git
dataChannels removed from tests
parent
28a44723e3
commit
7538bb4a47
|
@ -68,7 +68,7 @@ public class OpenViduClientTest {
|
|||
Map<String, List<String>> joinResult = new HashMap<String, List<String>>();
|
||||
|
||||
when(jsonRpcClient.sendRequest(JOINROOM_METHOD, params)).thenReturn(result);
|
||||
assertThat(client.joinRoom("room", "user", null), is(joinResult));
|
||||
assertThat(client.joinRoom("room", "user"), is(joinResult));
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -201,7 +201,7 @@ public class FakeParticipant implements Closeable {
|
|||
|
||||
public void joinRoom() {
|
||||
try {
|
||||
addPeers(jsonRpcClient.joinRoom(room, name, null));
|
||||
addPeers(jsonRpcClient.joinRoom(room, name));
|
||||
log.info("Joined room {}: {} peers", room, peerStreams);
|
||||
if (autoMedia) {
|
||||
log.debug("Automedia on, publishing and subscribing to as many as {} publishers",
|
||||
|
|
Loading…
Reference in New Issue