Temporarily disable failing test

See gh-gh-38822
This commit is contained in:
Phillip Webb 2023-12-14 20:33:28 -08:00
parent 1d10e51755
commit bb37a868b3

View File

@ -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 @@ 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() {