Skip to content

Commit abbdf7c

Browse files
committed
increasing time out
Signed-off-by: salaboy <[email protected]>
1 parent 8fbcb58 commit abbdf7c

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-examples/producer-app/src/test/java/io/dapr/springboot/examples/producer

1 file changed

+2
-2
lines changed

Diff for: spring-boot-examples/producer-app/src/test/java/io/dapr/springboot/examples/producer/ProducerAppTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void testOrdersEndpointAndMessaging() throws InterruptedException, IOException {
5555
.statusCode(200);
5656

5757
await()
58-
.atMost(Duration.ofSeconds(10))
58+
.atMost(Duration.ofSeconds(15))
5959
.until(controller.getAllEvents()::size, equalTo(1));
6060

6161
given()
@@ -111,7 +111,7 @@ void testCustomersWorkflows() throws InterruptedException, IOException {
111111

112112

113113
await()
114-
.atMost(Duration.ofSeconds(10))
114+
.atMost(Duration.ofSeconds(15))
115115
.until(customerStore.getCustomers()::size, equalTo(1));
116116
Customer customer = customerStore.getCustomer("salaboy");
117117
assertEquals(true, customer.isInCustomerDB());

0 commit comments

Comments
 (0)