We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fdbdf1 commit 22acf51Copy full SHA for 22acf51
spring-integration-mail/src/test/java/org/springframework/integration/mail/ImapMailReceiverTests.java
@@ -747,8 +747,8 @@ public void testInitialIdleDelayWhenRecentIsSupported() throws Exception {
747
* not receive any early messages.
748
*/
749
assertThat(channel.receive(100)).isNull();
750
- assertThat(channel.receive(5000)).isNotNull();
751
- assertThat(idles.await(5, TimeUnit.SECONDS)).isTrue();
+ assertThat(channel.receive(10000)).isNotNull();
+ assertThat(idles.await(10, TimeUnit.SECONDS)).isTrue();
752
adapter.stop();
753
}
754
0 commit comments