diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/error/DefaultErrorWebExceptionHandlerIntegrationTests.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/error/DefaultErrorWebExceptionHandlerIntegrationTests.java index d2b84b1b5b71..f3ec0171080f 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/error/DefaultErrorWebExceptionHandlerIntegrationTests.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/error/DefaultErrorWebExceptionHandlerIntegrationTests.java @@ -20,7 +20,6 @@ import javax.validation.Valid; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import reactor.core.publisher.Mono; @@ -214,13 +213,13 @@ void testExceptionWithNullMessage() { } @Test - @Disabled void responseCommitted() { this.contextRunner.run((context) -> { WebTestClient client = getWebClient(context); assertThatExceptionOfType(RuntimeException.class) .isThrownBy(() -> client.get().uri("/commit").exchange().expectStatus()) - .withCauseInstanceOf(IllegalStateException.class).withMessageContaining("already committed!"); + .withCauseInstanceOf(IllegalStateException.class) + .withMessageContaining("Error occurred after response was completed"); }); }