Polish "Apply context and connector customizer beans to Tomcat factories"

Closes gh-15492
This commit is contained in:
Andy Wilkinson
2018-12-19 17:08:31 +00:00
parent 90c489048f
commit 70f4d5e5a8
2 changed files with 2 additions and 2 deletions

View File

@@ -186,7 +186,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests {
static class TomcatContextCustomizerConfiguration {
@Bean
public TomcatContextCustomizer connectorCustomizer() {
public TomcatContextCustomizer contextCustomizer() {
return (context) -> {
};
}

View File

@@ -300,7 +300,7 @@ public class ServletWebServerFactoryAutoConfigurationTests {
static class TomcatContextCustomizerConfiguration {
@Bean
public TomcatContextCustomizer connectorCustomizer() {
public TomcatContextCustomizer contextCustomizer() {
return (context) -> {
};
}