Skip to content

Commit

Permalink
changed tests to return value
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Wells <[email protected]>
  • Loading branch information
matthewryanwells committed Jun 28, 2023
1 parent 3e7d814 commit 0804542
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ public void contentHeaderTest() throws IOException {

Response response = client().performRequest(sqlRequest);

assertEquals(response.getEntity().getContentType().getName(), CONTENT_TYPE);
assertEquals(response.getEntity().getContentType().getValue(), CONTENT_TYPE);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ public void contentHeaderTest() throws IOException {

Response response = client().performRequest(sqlRequest);

assertEquals(response.getEntity().getContentType().getName(), CONTENT_TYPE);
assertEquals(response.getEntity().getContentType().getValue(), CONTENT_TYPE);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ public void contentHeaderTest() throws IOException {

Response response = client().performRequest(sqlRequest);

assertEquals(response.getEntity().getContentType().getName(), CONTENT_TYPE);
assertEquals(response.getEntity().getContentType().getValue(), CONTENT_TYPE);
}
}

0 comments on commit 0804542

Please sign in to comment.