Skip to content

Commit

Permalink
increasing time out
Browse files Browse the repository at this point in the history
Signed-off-by: salaboy <[email protected]>
  • Loading branch information
salaboy committed Feb 6, 2025
1 parent 8fbcb58 commit abbdf7c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void testOrdersEndpointAndMessaging() throws InterruptedException, IOException {
.statusCode(200);

await()
.atMost(Duration.ofSeconds(10))
.atMost(Duration.ofSeconds(15))
.until(controller.getAllEvents()::size, equalTo(1));

given()
Expand Down Expand Up @@ -111,7 +111,7 @@ void testCustomersWorkflows() throws InterruptedException, IOException {


await()
.atMost(Duration.ofSeconds(10))
.atMost(Duration.ofSeconds(15))
.until(customerStore.getCustomers()::size, equalTo(1));
Customer customer = customerStore.getCustomer("salaboy");
assertEquals(true, customer.isInCustomerDB());
Expand Down

0 comments on commit abbdf7c

Please sign in to comment.