From df2d6b370eaa8d29822b928b0f307cb6918dfe4f Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Wed, 29 Mar 2017 09:56:04 +0200 Subject: [PATCH] Fix compilation error with latest webflux changes See commit c5bcefbd in Spring Framework, which refactored the RequestMappingHandlerAdapter. --- .../web/reactive/WebFluxAnnotationAutoConfigurationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxAnnotationAutoConfigurationTests.java b/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxAnnotationAutoConfigurationTests.java index 4893811a31..9150f559bc 100644 --- a/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxAnnotationAutoConfigurationTests.java +++ b/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxAnnotationAutoConfigurationTests.java @@ -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",