Skip to content

Commit

Permalink
Merge pull request #23524 from michalszynkiewicz/grpc-devui-test-fix
Browse files Browse the repository at this point in the history
Fix await condition in DevConsoleUnaryMethodTest
  • Loading branch information
michalszynkiewicz authored Feb 8, 2022
2 parents 9636db6 + cfc37ad commit e21e338
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void websocketTest() throws Exception {
});

await().atMost(5, TimeUnit.SECONDS)
.until(() -> incomingMessages.size() > 0);
.until(() -> incomingMessages.size() > 1);

assertThat(incomingMessages).hasSize(2);

Expand Down

0 comments on commit e21e338

Please sign in to comment.