Skip to content

Commit

Permalink
Revert "[3.8] Do not expect index page in DEV mode on Windows (#1759)"
Browse files Browse the repository at this point in the history
This reverts commit fcbb92e.
  • Loading branch information
mocenas authored Jun 27, 2024
1 parent 84a3669 commit b58c336
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,7 @@ public void shouldCreateApplicationOnJvm() {

// Start using DEV mode
app.start();
if (OS.WINDOWS.isCurrentOs()) {
// there is empty page on Windows as we don't use registry prepared by prod team
// related to https://github.com/quarkusio/quarkus/issues/39909
app.given().get("/hello").then().statusCode(HttpStatus.SC_OK);
} else {
app.given().get().then().statusCode(HttpStatus.SC_OK);
}
app.given().get().then().statusCode(HttpStatus.SC_OK);
}

@Tag("QUARKUS-1472")
Expand Down

0 comments on commit b58c336

Please sign in to comment.