Fix compilation error with latest webflux changes

See commit c5bcefbd in Spring Framework, which refactored
the RequestMappingHandlerAdapter.
This commit is contained in:
Brian Clozel 2017-03-29 09:56:04 +02:00
parent 4ca38d4563
commit df2d6b370e
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public class WebFluxAnnotationAutoConfigurationTests {
load(CustomArgumentResolvers.class);
RequestMappingHandlerAdapter adapter = this.context
.getBean(RequestMappingHandlerAdapter.class);
assertThat(adapter.getArgumentResolvers()).contains(
assertThat(adapter.getCustomArgumentResolvers()).contains(
this.context.getBean("firstResolver",
HandlerMethodArgumentResolver.class),
this.context.getBean("secondResolver",