remove class useless

This commit is contained in:
2022-12-28 19:16:13 +01:00
parent e669ee0d55
commit 7b53f48521
5 changed files with 5 additions and 78 deletions

View File

@@ -12,10 +12,10 @@ public class GreetingResourceTest {
@Test
public void testHelloEndpoint() {
given()
.when().get("/api/hello")
.when().get("/api/healthcheck")
.then()
.statusCode(200)
.body(is("Hello RESTEasy"));
.body(is("OK"));
}
}