Fix failing test
This commit is contained in:
parent
a0018d13e1
commit
5231e7da7b
|
@ -53,7 +53,7 @@ public class ErrorHandlingHttpHandlerTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void handleErrorSignal() throws Exception {
|
public void handleErrorSignal() throws Exception {
|
||||||
HttpExceptionHandler exceptionHandler = new UnresolvedExceptionHandler();
|
HttpExceptionHandler exceptionHandler = new HttpStatusExceptionHandler(HttpStatus.INTERNAL_SERVER_ERROR);
|
||||||
HttpHandler targetHandler = new TestHttpHandler(new IllegalStateException("boo"));
|
HttpHandler targetHandler = new TestHttpHandler(new IllegalStateException("boo"));
|
||||||
HttpHandler handler = new ErrorHandlingHttpHandler(targetHandler, exceptionHandler);
|
HttpHandler handler = new ErrorHandlingHttpHandler(targetHandler, exceptionHandler);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue