Align with DispatcherServlet changes

The `shouldHandleFailure` configuration option has been removed from
`DispatcherServlet`.

See gh-13511
This commit is contained in:
Brian Clozel 2018-08-17 13:24:00 +02:00
parent f30453dc52
commit 8c1df92566
1 changed files with 0 additions and 2 deletions

View File

@ -170,8 +170,6 @@ public class DispatcherServletAutoConfigurationTests {
this.contextRunner.run((context) -> {
DispatcherServlet dispatcherServlet = context
.getBean(DispatcherServlet.class);
assertThat(dispatcherServlet).extracting("shouldHandleFailure")
.containsExactly(false);
assertThat(dispatcherServlet).extracting("throwExceptionIfNoHandlerFound")
.containsExactly(false);
assertThat(dispatcherServlet).extracting("dispatchOptionsRequest")