Skip to content

Commit

Permalink
add log
Browse files Browse the repository at this point in the history
  • Loading branch information
Fungx committed Dec 9, 2023
1 parent beb2bc9 commit 240a273
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void testPoll() throws Exception {
invalidPost.setHeader(HttpHeaders.CONTENT_TYPE, "text/plain");
invalidPost.setHeader("ce-id", String.valueOf(UUID.randomUUID()));
HttpResponse resp = httpClient.execute(invalidPost);
Assertions.assertNotEquals(HttpStatus.SC_OK, resp.getStatusLine().getStatusCode());
Assertions.assertEquals(HttpStatus.SC_BAD_REQUEST, resp.getStatusLine().getStatusCode());
}

HttpResponse mockBinaryRequest() throws Exception {
Expand Down

0 comments on commit 240a273

Please sign in to comment.