Browse Source

Polish

Closes gh-16494
pull/16513/head
Johnny Lim 7 years ago committed by Stephane Nicoll
parent
commit
4392d7c2ed
  1. 2
      spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
  2. 2
      spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/reactive/webclient/WebFluxTestAutoConfigurationIntegrationTests.java

2
spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

@ -8021,7 +8021,7 @@ by the test slice. @@ -8021,7 +8021,7 @@ by the test slice.
[source,java,indent=0]
----
@Component
public class TestWebMvcConfigurer extends WebMvcConfigurer {
public class TestWebMvcConfigurer implements WebMvcConfigurer {
...
}
----

2
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/reactive/webclient/WebFluxTestAutoConfigurationIntegrationTests.java

@ -66,7 +66,7 @@ public class WebFluxTestAutoConfigurationIntegrationTests { @@ -66,7 +66,7 @@ public class WebFluxTestAutoConfigurationIntegrationTests {
}
@Test
public void freemarkerAutoConfigurationIsImported() {
public void freeMarkerAutoConfigurationIsImported() {
assertThat(this.applicationContext)
.has(importedAutoConfiguration(FreeMarkerAutoConfiguration.class));
}

Loading…
Cancel
Save