Skip to content

Commit

Permalink
fix: change timeout for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tkuzynow committed Nov 17, 2022
1 parent 6ff9ff7 commit 4ca879a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void sendLiveEvent_Should_sendVideoDenyRequestMessageEventToUser_When_userIsSubs
.andExpect(status().isOk());

await()
.atMost(MESSAGE_TIMEOUT, SECONDS)
.atMost(15, SECONDS)
.until(receivedMessages::size, is(1));
var resultMessage = receivedMessages.iterator().next();
assertThat(resultMessage, notNullValue());
Expand Down

0 comments on commit 4ca879a

Please sign in to comment.