Skip to content

Commit

Permalink
Increase timeout in the ImapMailReceiverTests
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Mar 29, 2023
1 parent 4fdbdf1 commit 22acf51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,8 @@ public void testInitialIdleDelayWhenRecentIsSupported() throws Exception {
* not receive any early messages.
*/
assertThat(channel.receive(100)).isNull();
assertThat(channel.receive(5000)).isNotNull();
assertThat(idles.await(5, TimeUnit.SECONDS)).isTrue();
assertThat(channel.receive(10000)).isNotNull();
assertThat(idles.await(10, TimeUnit.SECONDS)).isTrue();
adapter.stop();
}

Expand Down

0 comments on commit 22acf51

Please sign in to comment.