Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
weidongxu-microsoft committed Jan 13, 2022
1 parent 7d47df8 commit b71b9d4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import java.time.OffsetDateTime;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
import reactor.core.publisher.Mono;

public final class ClientTests extends TestBase {
Expand All @@ -42,6 +43,7 @@ public void setup() {
@Test
@DoNotRecord(skipInPlayback = true)
public void testClient() {
// use the builder to create client
boolean userExists = builder.buildWebPubSubClient().userExistsWithResponse("hub", "user_id", null).getValue();
Assertions.assertFalse(userExists);
}
}

0 comments on commit b71b9d4

Please sign in to comment.