From 65af35c1ac79c7e75d69ee76a4dcf5ec9f28322a Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 15 Dec 2023 07:42:00 -0800 Subject: [PATCH] Revert "Temporarily disable failing test" This reverts commit bb37a868b3e5a4db003d503c58c838a5a32784a8. Closes gh-38659 --- .../secure/CustomServletPathUnauthenticatedErrorPageTests.java | 3 --- 1 file changed, 3 deletions(-) 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 b297a109499..ff6577d4eb0 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,8 +16,6 @@ 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; @@ -36,7 +34,6 @@ import static org.springframework.security.config.Customizer.withDefaults; 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() {