Skip to content

Commit

Permalink
fix typo in HTTPBridgeITAbstract (#854)
Browse files Browse the repository at this point in the history
Signed-off-by: António Pedro <[email protected]>
  • Loading branch information
antonio-pedro99 authored Dec 13, 2023
1 parent 5e0c6d5 commit ff2ad8f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ static void beforeAll(VertxTestContext context) {
vertx.deployVerticle(httpBridge, context.succeeding(id -> context.completeNow()));
} else {
context.completeNow();
// else we create external bridge from the OS invoked by `.jar`
// else we create an external bridge from the OS invoked by `.jar`
}

client = WebClient.create(vertx, new WebClientOptions()
Expand All @@ -146,7 +146,7 @@ static void afterAll(VertxTestContext context) {
if ("FALSE".equals(BRIDGE_EXTERNAL_ENV)) {
vertx.close(context.succeeding(arg -> context.completeNow()));
} else {
// if we running external bridge
// if we are running an external bridge
context.completeNow();
}
}
Expand Down

0 comments on commit ff2ad8f

Please sign in to comment.