dataChannels removed from tests

pull/73/head
pabloFuente 2018-04-04 12:26:11 +02:00
parent 28a44723e3
commit 7538bb4a47
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ public class OpenViduClientTest {
Map<String, List<String>> joinResult = new HashMap<String, List<String>>(); Map<String, List<String>> joinResult = new HashMap<String, List<String>>();
when(jsonRpcClient.sendRequest(JOINROOM_METHOD, params)).thenReturn(result); when(jsonRpcClient.sendRequest(JOINROOM_METHOD, params)).thenReturn(result);
assertThat(client.joinRoom("room", "user", null), is(joinResult)); assertThat(client.joinRoom("room", "user"), is(joinResult));
} }
} }

View File

@ -201,7 +201,7 @@ public class FakeParticipant implements Closeable {
public void joinRoom() { public void joinRoom() {
try { try {
addPeers(jsonRpcClient.joinRoom(room, name, null)); addPeers(jsonRpcClient.joinRoom(room, name));
log.info("Joined room {}: {} peers", room, peerStreams); log.info("Joined room {}: {} peers", room, peerStreams);
if (autoMedia) { if (autoMedia) {
log.debug("Automedia on, publishing and subscribing to as many as {} publishers", log.debug("Automedia on, publishing and subscribing to as many as {} publishers",