diff --git a/instrumentation/vertx-reactive-3.5/javaagent/src/latestDepTest/groovy/client/VertxRxCircuitBreakerWebClientTest.groovy b/instrumentation/vertx-reactive-3.5/javaagent/src/latestDepTest/groovy/client/VertxRxCircuitBreakerWebClientTest.groovy index 2d30c87854..7b6b16e8f9 100644 --- a/instrumentation/vertx-reactive-3.5/javaagent/src/latestDepTest/groovy/client/VertxRxCircuitBreakerWebClientTest.groovy +++ b/instrumentation/vertx-reactive-3.5/javaagent/src/latestDepTest/groovy/client/VertxRxCircuitBreakerWebClientTest.groovy @@ -87,7 +87,7 @@ class VertxRxCircuitBreakerWebClientTest extends HttpClientTest> String expectedClientSpanName(URI uri, String method) { switch (uri.toString()) { case "http://localhost:61/": // unopened port - case "https://192.0.2.1/": // non routable address + case "http://192.0.2.1/": // non routable address return "CONNECT" default: return super.expectedClientSpanName(uri, method) @@ -98,7 +98,7 @@ class VertxRxCircuitBreakerWebClientTest extends HttpClientTest> Set> httpAttributes(URI uri) { switch (uri.toString()) { case "http://localhost:61/": // unopened port - case "https://192.0.2.1/": // non routable address + case "http://192.0.2.1/": // non routable address return [] } return super.httpAttributes(uri) diff --git a/instrumentation/vertx-reactive-3.5/javaagent/src/latestDepTest/groovy/client/VertxRxWebClientTest.groovy b/instrumentation/vertx-reactive-3.5/javaagent/src/latestDepTest/groovy/client/VertxRxWebClientTest.groovy index bd7292a285..833f880308 100644 --- a/instrumentation/vertx-reactive-3.5/javaagent/src/latestDepTest/groovy/client/VertxRxWebClientTest.groovy +++ b/instrumentation/vertx-reactive-3.5/javaagent/src/latestDepTest/groovy/client/VertxRxWebClientTest.groovy @@ -61,7 +61,7 @@ class VertxRxWebClientTest extends HttpClientTest> implement String expectedClientSpanName(URI uri, String method) { switch (uri.toString()) { case "http://localhost:61/": // unopened port - case "https://192.0.2.1/": // non routable address + case "http://192.0.2.1/": // non routable address return "CONNECT" default: return super.expectedClientSpanName(uri, method) @@ -73,7 +73,7 @@ class VertxRxWebClientTest extends HttpClientTest> implement if (exception.class == RuntimeException) { switch (uri.toString()) { case "http://localhost:61/": // unopened port - case "https://192.0.2.1/": // non routable address + case "http://192.0.2.1/": // non routable address exception = exception.getCause() } } @@ -84,7 +84,7 @@ class VertxRxWebClientTest extends HttpClientTest> implement Set> httpAttributes(URI uri) { switch (uri.toString()) { case "http://localhost:61/": // unopened port - case "https://192.0.2.1/": // non routable address + case "http://192.0.2.1/": // non routable address return [] } return super.httpAttributes(uri)