Skip to content

Commit

Permalink
chore: increment timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Eberl committed Jun 22, 2021
1 parent a091c68 commit 4565d2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ void sendLiveEvent_Should_sendDirectMessageMultipleTimesToUserAndFinalyRemove_Wh
assertThat(resultMessage, notNullValue());
assertThat(resultMessage.getEventType(), is(DIRECTMESSAGE));
for (int i = 0; i < 5; i++) {
var furtherMessage = receivedMessages.poll(60, SECONDS);
var furtherMessage = receivedMessages.poll(100, SECONDS);
assertThat(furtherMessage, notNullValue());
assertThat(furtherMessage.getEventType(), is(DIRECTMESSAGE));
}
Expand Down

0 comments on commit 4565d2b

Please sign in to comment.