Browse Source

Fix typo

See gh-17448
pull/17462/head
Johnny Lim 7 years ago committed by Madhura Bhave
parent
commit
e42f4d0279
  1. 2
      spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/rsocket/RSocketServerAutoConfigurationTests.java

2
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/rsocket/RSocketServerAutoConfigurationTests.java

@ -79,7 +79,7 @@ class RSocketServerAutoConfigurationTests { @@ -79,7 +79,7 @@ class RSocketServerAutoConfigurationTests {
}
@Test
void shoudUseCustomServerBootstrap() {
void shouldUseCustomServerBootstrap() {
contextRunner().withUserConfiguration(CustomServerBootstrapConfig.class).run((context) -> assertThat(context)
.getBeanNames(RSocketServerBootstrap.class).containsExactly("customServerBootstrap"));
}

Loading…
Cancel
Save