Skip to content

Commit

Permalink
Removed duplicate test after merge.
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Pericasgeertsen <[email protected]>
  • Loading branch information
spericas committed Nov 22, 2021
1 parent b2673b0 commit 5575aca
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,16 +101,4 @@ public void test5() {
public void testStartup() {
assertThat(StartupServices.SUCCESSFUL_STARTUP.get(), is(true));
}

@Test
public void test4() {
Response r;
r = baseTarget.path("test4")
.queryParam("param1", "1")
.request()
.get();
assertThat(r.getStatus(), is(HttpResponseStatus.OK.code()));
String entityValue = r.readEntity(String.class);
assertThat(entityValue, is("1"));
}
}

0 comments on commit 5575aca

Please sign in to comment.