Skip to content

Commit

Permalink
Fix ecosystem CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ia3andy committed Jan 8, 2024
1 parent 4ba0b4c commit 768db6c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ void downloadFlowShouldWorkWithAllOptions() {
void downloadAsPostShouldWorkWithAllOptions() {
given()
.contentType(ContentType.JSON)
.body("{\"groupId\":\"io.awesome\",\"artifactId\":\"my-awesome-app\",\"version\":\"2.0.0\",\"javaVersion\":11,\"noCode\":true,\"extensions\":[\"io.quarkus:quarkus-resteasy\",\"io.quarkus:quarkus-resteasy-jackson\"]}")
.body("{\"groupId\":\"io.awesome\",\"artifactId\":\"my-awesome-app\",\"version\":\"2.0.0\",\"javaVersion\":21,\"noCode\":true,\"extensions\":[\"io.quarkus:quarkus-resteasy\",\"io.quarkus:quarkus-resteasy-jackson\"]}")
.when().post("/api/download")
.then()
.log().ifValidationFails()
Expand All @@ -185,7 +185,7 @@ void downloadAsPostShouldWorkWithAllOptions() {
.groupId("io.awesome")
.artifactId("my-awesome-app")
.version("2.0.0")
.javaVersion(11)
.javaVersion(21)
.noCode(true)
.extensions(Set.of("io.quarkus:quarkus-resteasy", "io.quarkus:quarkus-resteasy-jackson"))
.build()));
Expand Down

0 comments on commit 768db6c

Please sign in to comment.