Skip to content

Commit

Permalink
[test] Increase the timeout for the flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
violetagg committed May 21, 2024
1 parent eafbfef commit ac689f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3134,7 +3134,7 @@ private void doTestIssue1697(HttpClient client, boolean hasTimeout, AtomicBoolea
.responseContent()
.aggregate()
.asString()
.block(Duration.ofSeconds(5));
.block(Duration.ofSeconds(10));

assertThat(response).isEqualTo("testIssue1697");
assertThat(onRequest.get()).isFalse();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2282,7 +2282,7 @@ public void userEventTriggered(ChannelHandlerContext ctx, Object evt) {
.aggregate()
.as(StepVerifier::create)
.expectError()
.verify(Duration.ofSeconds(5));
.verify(Duration.ofSeconds(10));

StepVerifier.create(error.asMono())
.expectNextMatches(t -> t instanceof SslHandshakeTimeoutException)
Expand Down

0 comments on commit ac689f6

Please sign in to comment.