Skip to content

Commit

Permalink
Fix breaking usage of internal API
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Aug 15, 2024
1 parent 7862e7c commit 5adf897
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import examples.GreeterGrpc;
import io.vertx.core.Vertx;
import io.vertx.core.VertxOptions;
import io.vertx.core.impl.VertxBuilder;
import io.vertx.core.impl.VertxBootstrapImpl;
import io.vertx.core.spi.transport.Transport;
import io.vertx.ext.unit.TestContext;
import io.vertx.ext.unit.junit.VertxUnitRunner;
Expand Down Expand Up @@ -35,7 +35,7 @@ private void testInternal(TestContext ctx, Vertx vertx) {
}

private void assumeNativeTransport() {
Transport nativeTransport = VertxBuilder.nativeTransport();
Transport nativeTransport = VertxBootstrapImpl.nativeTransport();
Assume.assumeTrue(nativeTransport != null && nativeTransport.isAvailable());
}
}

0 comments on commit 5adf897

Please sign in to comment.