Skip to content

Commit 3af57ab

Browse files
committed
Fix test property keys for EnableWebFluxExtension
Update WebFluxAutoConfigurationAllEnabledTest properties to use the correct keys: replace "microsphere.spring.prefix.EnableWebFluxExtension.*" with "microsphere.spring.@EnableWebFluxExtension.*" so the test properly enables storing request and response body values.
1 parent 884e9fb commit 3af57ab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

microsphere-spring-boot-webflux/src/test/java/io/microsphere/spring/boot/webflux/autoconfigure/WebFluxAutoConfigurationAllEnabledTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
})
4444
@TestPropertySource(
4545
properties = {
46-
"microsphere.spring.prefix.EnableWebFluxExtension.storeRequestBodyArgument=true",
47-
"microsphere.spring.prefix.EnableWebFluxExtension.storeResponseBodyReturnValue=true",
46+
"microsphere.spring.@EnableWebFluxExtension.storeRequestBodyArgument=true",
47+
"microsphere.spring.@EnableWebFluxExtension.storeResponseBodyReturnValue=true",
4848
}
4949
)
5050
class WebFluxAutoConfigurationAllEnabledTest extends AbstractWebFluxAutoConfigurationTest {

0 commit comments

Comments
 (0)