Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheikah45 committed Oct 31, 2023
1 parent 9d252bb commit 5ba10c4
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,8 @@ public void testBuildCommand() throws Exception {
assertEquals(String.valueOf(0), command.get(12));
assertEquals("--gpgnet-port", command.get(13));
assertEquals(String.valueOf(0), command.get(14));
assertEquals("--force-relay", command.get(15));
assertEquals("--debug-window", command.get(16));
assertEquals("--info-window", command.get(17));
assertEquals("--debug-window", command.get(15));
assertEquals("--info-window", command.get(16));
}

@Test
Expand Down Expand Up @@ -194,7 +193,6 @@ public void testSetIceAdapters() throws Exception {
Map<String, Object> iceMap = value.get(0);

assertEquals(coturnServer.getUsername(), iceMap.get("username"));
assertEquals(coturnServer.getCredentialType(), iceMap.get("credentialType"));
assertEquals(coturnServer.getCredential(), iceMap.get("credential"));
assertEquals(List.of("turn://test.coturn.com?transport=tcp"), iceMap.get("urls"));
}
Expand Down

0 comments on commit 5ba10c4

Please sign in to comment.