Skip to content

Commit

Permalink
aligning tests for examples
Browse files Browse the repository at this point in the history
Signed-off-by: salaboy <[email protected]>
  • Loading branch information
salaboy committed Feb 5, 2025
1 parent 5d1fcc3 commit 8f94f1a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public RabbitMQContainer rabbitMQContainer(Network daprNetwork) {
return new RabbitMQContainer(DockerImageName.parse("rabbitmq:3.7.25-management-alpine"))
.withExposedPorts(5672).withNetworkAliases("rabbitmq")
//Uncomment to run this app alongside `producer-app`
.withReuse(true)
//.withReuse(true)
.withNetwork(daprNetwork);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public RabbitMQContainer rabbitMQContainer(Network daprNetwork){
return new RabbitMQContainer(DockerImageName.parse("rabbitmq:3.7.25-management-alpine"))
.withExposedPorts(5672)
.withNetworkAliases("rabbitmq")
// .withReuse(true)
.withNetwork(daprNetwork);

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void testCustomersWorkflows() throws InterruptedException, IOException {
.contentType(ContentType.JSON)
.body("{\"customerName\": \"salaboy\"}")
.when()
.post("/customers/")
.post("/customers")
.then()
.statusCode(200);

Expand Down

0 comments on commit 8f94f1a

Please sign in to comment.