diff --git a/extensions/resteasy-classic/resteasy/deployment/src/test/java/io/quarkus/resteasy/test/ClasspathResourceTestCase.java b/extensions/resteasy-classic/resteasy/deployment/src/test/java/io/quarkus/resteasy/test/ClasspathResourceTestCase.java index 57477f8e100e7..450c0372c9e2c 100644 --- a/extensions/resteasy-classic/resteasy/deployment/src/test/java/io/quarkus/resteasy/test/ClasspathResourceTestCase.java +++ b/extensions/resteasy-classic/resteasy/deployment/src/test/java/io/quarkus/resteasy/test/ClasspathResourceTestCase.java @@ -22,22 +22,18 @@ public class ClasspathResourceTestCase { public void testRootResource() { RestAssured.get("/other/hello.txt").then() - .log().all() .statusCode(200) .body(is("hello")); RestAssured.get("/stuff.html").then() - .log().all() .statusCode(200) .body(is("stuff")); RestAssured.get("/index.html").then() - .log().all() .statusCode(200) .body(is("index")); RestAssured.get("/").then() - .log().all() .statusCode(200) .body(is("index")); } diff --git a/extensions/resteasy-classic/resteasy/deployment/src/test/java/io/quarkus/resteasy/test/files/StaticFileWithResourcesHttpRootTest.java b/extensions/resteasy-classic/resteasy/deployment/src/test/java/io/quarkus/resteasy/test/files/StaticFileWithResourcesHttpRootTest.java index b9fbe46dd8cc6..50956915d8707 100644 --- a/extensions/resteasy-classic/resteasy/deployment/src/test/java/io/quarkus/resteasy/test/files/StaticFileWithResourcesHttpRootTest.java +++ b/extensions/resteasy-classic/resteasy/deployment/src/test/java/io/quarkus/resteasy/test/files/StaticFileWithResourcesHttpRootTest.java @@ -29,17 +29,14 @@ public class StaticFileWithResourcesHttpRootTest { public void test() { RestAssured.get("/web/index.html").then() - .log().all() .statusCode(200) .body(containsString("

Hello

")); RestAssured.get("/lorem.txt").then() - .log().all() .statusCode(200) .body(containsString("Lorem")); RestAssured.get("/").then() - .log().all() .statusCode(200) .body(containsString("Root Resource")); } diff --git a/extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/BuiltTimeContentProcessor.java b/extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/BuildTimeContentProcessor.java similarity index 99% rename from extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/BuiltTimeContentProcessor.java rename to extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/BuildTimeContentProcessor.java index 2b282c92aef33..d035b6ea3d3da 100644 --- a/extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/BuiltTimeContentProcessor.java +++ b/extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/BuildTimeContentProcessor.java @@ -45,7 +45,7 @@ * This creates static content that is used in dev UI. For example the index.html and any other data (json) available on build * time */ -public class BuiltTimeContentProcessor { +public class BuildTimeContentProcessor { private static final String SLASH = "/"; private static final String DEV_UI = "dev-ui"; private static final String BUILD_TIME_PATH = "dev-ui-templates" + File.separator + "build-time";