Skip to content

Commit

Permalink
Feedback disable tests
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Aure <[email protected]>
  • Loading branch information
KyleAure committed Nov 9, 2023
1 parent fe5f3a4 commit 7e7432a
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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()
Expand Down Expand Up @@ -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")
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit 7e7432a

Please sign in to comment.