Skip to content

Commit eb38c3a

Browse files
committed
Fix test broken by additional customizer
See gh-16498
1 parent 9a64153 commit eb38c3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/ReactiveWebServerFactoryAutoConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void createFromConfigClass() {
6868
assertThat(context.getBeansOfType(ReactiveWebServerFactory.class))
6969
.hasSize(1);
7070
assertThat(context.getBeansOfType(WebServerFactoryCustomizer.class))
71-
.hasSize(1);
71+
.hasSize(2);
7272
assertThat(context
7373
.getBeansOfType(ReactiveWebServerFactoryCustomizer.class))
7474
.hasSize(1);

0 commit comments

Comments
 (0)