Skip to content

Commit

Permalink
drop: Debug tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
damencho committed Apr 11, 2024
1 parent 09547a9 commit a2e9d04
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/test/java/org/jitsi/jigasi/CallsHandlingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import net.java.sip.communicator.util.osgi.ServiceUtils;
import org.jitsi.jigasi.xmpp.*;
import org.jitsi.service.configuration.*;
import org.jitsi.utils.logging.Logger;
import org.jitsi.xmpp.extensions.rayo.*;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.*;
Expand Down Expand Up @@ -55,6 +56,8 @@ public class CallsHandlingTest

private MockJvbConferenceFocus focus;

private final static Logger logger = Logger.getLogger(CallsHandlingTest.class);

/**
* Initializes OSGi and the videobridge.
*/
Expand Down Expand Up @@ -303,7 +306,7 @@ public void testFocusLeftTheRoomWithResume()
MockCall sipCall = sipProvider.getTelephony().mockIncomingGatewayCall("calee", roomName);

callStateWatch.waitForState(sipCall, CallState.CALL_IN_PROGRESS, 2000);

logger.info("faillllllllll maybe");
// Now we expect SIP call to be in progress, but xmpp call ended
callStateWatch.waitForState(focus.getCall(), CallState.CALL_ENDED, 2000);
assertNull(focus.getChatRoom());
Expand Down

0 comments on commit a2e9d04

Please sign in to comment.