diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/testing.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/testing.adoc index c54565f755..7e7e084460 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/testing.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/testing.adoc @@ -463,8 +463,8 @@ Spring GraphQL offers a dedicated testing support module; you'll need to add it - org.springframework - spring-webflux + org.springframework.boot + spring-boot-starter-webflux test @@ -476,7 +476,7 @@ Spring GraphQL offers a dedicated testing support module; you'll need to add it dependencies { testImplementation("org.springframework.graphql:spring-graphql-test") // Unless already present in the implementation configuration - testImplementation("org.springframework:spring-webflux") + testImplementation("org.springframework.boot:spring-boot-starter-webflux") } ----