Skip to content

Commit

Permalink
Adding debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mswatosh committed Nov 16, 2023
1 parent 24014a1 commit df515f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/io/openliberty/sample/it/CrewServiceIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void testAddGetDeleteCrewMember() {

//Remove Existing
response = client.target(baseURL + "db/crew/75").request().delete();
assertEquals(200, response.getStatus());
assertEquals(200, response.getStatus(), "output: " + response.readEntity(String.class));

//Check Add
response = client.target(baseURL + "db/crew/it").request().post(Entity.json("{\"name\":\"Mark\",\"rank\":\"Captain\",\"crewID\":\"75\"}"));
Expand Down

0 comments on commit df515f4

Please sign in to comment.