Skip to content

Commit

Permalink
[bugfix] [e2e] Fixed a minor bug (#5274)
Browse files Browse the repository at this point in the history
  • Loading branch information
ic4y authored Aug 11, 2023
1 parent 84d8cc3 commit 837003c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ public void testExpiredJobWasDeleted() throws Exception {

JobResult result = clientJobProxy.doWaitForJobComplete().get();
Assertions.assertEquals(result.getStatus(), JobStatus.FINISHED);
Awaitility.await()
.atMost(65, TimeUnit.SECONDS)
await().atMost(65, TimeUnit.SECONDS)
.untilAsserted(
() ->
Assertions.assertThrowsExactly(
Expand Down

0 comments on commit 837003c

Please sign in to comment.