diff --git a/sample-apps/everything-jakarta-app/src/test/java/org/example/app/RestAssuredIT.java b/sample-apps/everything-jakarta-app/src/test/java/org/example/app/RestAssuredIT.java index 302d0e62..6b325a95 100644 --- a/sample-apps/everything-jakarta-app/src/test/java/org/example/app/RestAssuredIT.java +++ b/sample-apps/everything-jakarta-app/src/test/java/org/example/app/RestAssuredIT.java @@ -23,6 +23,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.microshed.testing.SharedContainerConfig; import org.microshed.testing.jupiter.MicroShedTest; @@ -46,8 +47,8 @@ public void testCreatePerson() { } //Blocked because this codepath of restassured is still using javax - // https://github.com/rest-assured/rest-assured/issues/1651 - //@Test + @Disabled("https://github.com/rest-assured/rest-assured/issues/1651") + @Test public void testMinSizeName() { // First create a new person with min size name long minSizeNameId = given() @@ -78,8 +79,8 @@ public void testMinSizeName() { } //Blocked because this codepath of restassured is still using javax - // https://github.com/rest-assured/rest-assured/issues/1651 - //@Test + @Disabled("https://github.com/rest-assured/rest-assured/issues/1651") + @Test public void testMinAge() { long minAgeId = given() .queryParam("name", "Newborn") @@ -108,8 +109,8 @@ public void testMinAge() { } //Blocked because this codepath of restassured is still using javax - // https://github.com/rest-assured/rest-assured/issues/1651 - //@Test + @Disabled("https://github.com/rest-assured/rest-assured/issues/1651") + @Test public void testGetPerson() { // First create the Person long bobId = given()