From bb37a868b3e5a4db003d503c58c838a5a32784a8 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 14 Dec 2023 20:33:28 -0800 Subject: [PATCH] Temporarily disable failing test See gh-gh-38822 --- .../secure/CustomServletPathUnauthenticatedErrorPageTests.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-web-secure/src/test/java/smoketest/web/secure/CustomServletPathUnauthenticatedErrorPageTests.java b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-web-secure/src/test/java/smoketest/web/secure/CustomServletPathUnauthenticatedErrorPageTests.java index ff6577d4eb05..b297a1094995 100644 --- a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-web-secure/src/test/java/smoketest/web/secure/CustomServletPathUnauthenticatedErrorPageTests.java +++ b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-web-secure/src/test/java/smoketest/web/secure/CustomServletPathUnauthenticatedErrorPageTests.java @@ -16,6 +16,8 @@ package smoketest.web.secure; +import org.junit.jupiter.api.Disabled; + import org.springframework.boot.test.context.SpringBootTest; import org.springframework.context.annotation.Bean; import org.springframework.security.config.annotation.web.builders.HttpSecurity; @@ -34,6 +36,7 @@ SampleWebSecureApplication.class }, properties = { "server.error.include-message=always", "spring.security.user.name=username", "spring.security.user.password=password", "spring.mvc.servlet.path=/custom/servlet/path" }) +@Disabled("gh-38822") class CustomServletPathUnauthenticatedErrorPageTests extends AbstractUnauthenticatedErrorPageTests { CustomServletPathUnauthenticatedErrorPageTests() {