Fix typo in Spring Boot testing support

See gh-75
This commit is contained in:
Brian Clozel
2021-10-22 22:04:27 +02:00
parent e053e14158
commit 207f0ae1a3

View File

@@ -525,7 +525,7 @@ For GraphQL over HTTP with Spring MVC, using `MockMvc` as the server:
----
@SpringBootTest
@AutoConfigureMockMvc
@AutoConfigureGraphQlTester
@AutoConfigureWebGraphQlTester
public class MockMvcGraphQlTests {
@Autowired
@@ -541,7 +541,7 @@ For GraphQL over HTTP with Spring WebFlux, using a
----
@SpringBootTest
@AutoConfigureWebTestClient
@AutoConfigureGraphQlTester
@AutoConfigureWebGraphQlTester
public class MockMvcGraphQlTests {
@Autowired