mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-25 02:49:03 +00:00
Fix compilation error with latest webflux changes
See commit c5bcefbd in Spring Framework, which refactored the RequestMappingHandlerAdapter.
This commit is contained in:
+1
-1
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user