Skip to content

Commit

Permalink
fix spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
jandro996 committed Jun 15, 2023
1 parent 66a4c0a commit 24db773
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ class IastVertxSinksTest extends IastHttpServerTest<Vertx40Server> {
final future = new CompletableFuture<>()
server.deployVerticle('server.IastSinksVerticle',
new DeploymentOptions()
.setConfig(new JsonObject().put(CONFIG_HTTP_SERVER_PORT, port))
.setInstances(1)) { res ->
if (!res.succeeded()) {
throw new RuntimeException("Cannot deploy server Verticle", res.cause())
.setConfig(new JsonObject().put(CONFIG_HTTP_SERVER_PORT, port))
.setInstances(1)) { res ->
if (!res.succeeded()) {
throw new RuntimeException("Cannot deploy server Verticle", res.cause())
}
future.complete(null)
}
future.complete(null)
}
future.get()
final httpServers = server.sharedHttpServers().values()
if (!httpServers.empty) {
Expand Down

0 comments on commit 24db773

Please sign in to comment.