Skip to content

Commit

Permalink
Update test to correctly assert error with Servlet (#10082)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyg484 authored Nov 8, 2023
1 parent 1817df1 commit f4e49de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void testErrorHandlerWithFluxChunkedSignaledDelayedError() throws IOException {
asserts(SPEC_NAME,
HttpRequest.GET("/errors/flux-chunked-delayed-error"),
(server, request) -> {
Executable e = () -> server.exchange(request);
Executable e = () -> server.exchange(request, String[].class);
Assertions.assertThrows(HttpClientException.class, e);
});
}
Expand Down

0 comments on commit f4e49de

Please sign in to comment.