Skip to content

Commit

Permalink
asdasd
Browse files Browse the repository at this point in the history
  • Loading branch information
Giorgy Oliveira committed Oct 19, 2023
1 parent 5e1cb29 commit 497bb2e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/test/java/org/minicurso/gioliveira/GreetingResourceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public void testHelloEndpoint() {
.statusCode(200)
.body(is("Hello from RESTEasy Reactive"));
}
// @Test
// public void testForceFailHelloEndpoint() {
// given()
// .when().get("/hello")
// .then()
// .statusCode(404);
// }
@Test
public void testForceFailHelloEndpoint() {
given()
.when().get("/hello")
.then()
.statusCode(404);
}

}

0 comments on commit 497bb2e

Please sign in to comment.