diff --git a/dependencies/default/pom.xml b/dependencies/default/pom.xml index 3e0b1b41d39..edf7a3f3000 100644 --- a/dependencies/default/pom.xml +++ b/dependencies/default/pom.xml @@ -77,7 +77,7 @@ 5.14.0 2.2.0 0.3.0 - 4.1.130.Final + 4.1.135.Final 4.10.0 0.16.0 3.21.12 @@ -97,7 +97,7 @@ 3.4.9 1.6.9 1.3.3 - 4.5.23 + 4.5.28 3.4.3 3.4.0 3.0.2 diff --git a/foundations/foundation-vertx/src/test/java/io/vertx/ext/web/impl/TestHttpServerRequestUtils.java b/foundations/foundation-vertx/src/test/java/io/vertx/ext/web/impl/TestHttpServerRequestUtils.java index 7297a866b2f..4158740fb63 100644 --- a/foundations/foundation-vertx/src/test/java/io/vertx/ext/web/impl/TestHttpServerRequestUtils.java +++ b/foundations/foundation-vertx/src/test/java/io/vertx/ext/web/impl/TestHttpServerRequestUtils.java @@ -36,6 +36,7 @@ public void testVertxServerRequestToHttpServletRequest() { HttpServerRequestInternal request = Mockito.mock(HttpServerRequestInternal.class); HttpServerRequestWrapper wrapper = new HttpServerRequestWrapper(request, AllowForwardHeaders.NONE, null); Mockito.when(request.scheme()).thenReturn("http"); + Mockito.when(request.uri()).thenReturn("http://localhost:8080"); Mockito.when(context.request()).thenReturn(wrapper); Mockito.when(request.authority()).thenReturn(HostAndPort.create("localhost", 8080)); RequestBody requestBody = Mockito.mock(RequestBody.class);