Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Jul 12, 2024
1 parent 2309cad commit f127b68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void test1(TestContext context) {
public void test2(TestContext context) {
// Deploy and undeploy a verticle
vertx.deployVerticle(SomeVerticle.class.getName())
.compose(deploymentID -> vertx.deployVerticle(deploymentID))
.compose(deploymentID -> vertx.undeploy(deploymentID))
.onComplete(context.asyncAssertSuccess());
}
}

0 comments on commit f127b68

Please sign in to comment.