Fix failing test

master
Rossen Stoyanchev 9 years ago
parent a0018d13e1
commit 5231e7da7b
  1. 2
      spring-web-reactive/src/test/java/org/springframework/http/server/reactive/ErrorHandlingHttpHandlerTests.java

@ -53,7 +53,7 @@ public class ErrorHandlingHttpHandlerTests {
@Test
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 handler = new ErrorHandlingHttpHandler(targetHandler, exceptionHandler);

Loading…
Cancel
Save