Closes gh-16688
This commit is contained in:
Johnny Lim
2019-04-30 22:34:03 +09:00
committed by Stephane Nicoll
parent ed538a2e31
commit cb0e3c793b
2 changed files with 6 additions and 6 deletions

View File

@@ -314,7 +314,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests {
static class JettyServerCustomizerConfiguration {
@Bean
public JettyServerCustomizer protocolHandlerCustomizer() {
public JettyServerCustomizer serverCustomizer() {
return (server) -> {
};
@@ -326,7 +326,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests {
static class UndertowBuilderCustomizerConfiguration {
@Bean
public UndertowBuilderCustomizer protocolHandlerCustomizer() {
public UndertowBuilderCustomizer builderCustomizer() {
return (builder) -> {
};
@@ -338,7 +338,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests {
static class UndertowDeploymentInfoCustomizerConfiguration {
@Bean
public UndertowDeploymentInfoCustomizer protocolHandlerCustomizer() {
public UndertowDeploymentInfoCustomizer deploymentInfoCustomizer() {
return (deploymentInfo) -> {
};

View File

@@ -428,7 +428,7 @@ public class ServletWebServerFactoryAutoConfigurationTests {
static class JettyServerCustomizerConfiguration {
@Bean
public JettyServerCustomizer protocolHandlerCustomizer() {
public JettyServerCustomizer serverCustomizer() {
return (server) -> {
};
@@ -440,7 +440,7 @@ public class ServletWebServerFactoryAutoConfigurationTests {
static class UndertowBuilderCustomizerConfiguration {
@Bean
public UndertowBuilderCustomizer protocolHandlerCustomizer() {
public UndertowBuilderCustomizer builderCustomizer() {
return (builder) -> {
};
@@ -452,7 +452,7 @@ public class ServletWebServerFactoryAutoConfigurationTests {
static class UndertowDeploymentInfoCustomizerConfiguration {
@Bean
public UndertowDeploymentInfoCustomizer protocolHandlerCustomizer() {
public UndertowDeploymentInfoCustomizer deploymentInfoCustomizer() {
return (deploymentInfo) -> {
};