fixed test
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 7297a86..4158740 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 @@
     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);