From 96b4dae221057b4ea0c6f453b84376dd510d95d1 Mon Sep 17 00:00:00 2001 From: Igor Motov Date: Wed, 30 May 2018 11:29:17 -0400 Subject: [PATCH] [CI] Mute SamlAuthenticatorTests testIncorrectSigningKeyIsRejected Tracked by #30970 --- .../xpack/security/authc/saml/SamlAuthenticatorTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authc/saml/SamlAuthenticatorTests.java b/x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authc/saml/SamlAuthenticatorTests.java index 3b6c9bf7401..ef60764d26d 100644 --- a/x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authc/saml/SamlAuthenticatorTests.java +++ b/x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authc/saml/SamlAuthenticatorTests.java @@ -896,6 +896,7 @@ public class SamlAuthenticatorTests extends SamlTestCase { assertThat(attributes.attributes(), iterableWithSize(1)); } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/30970") public void testIncorrectSigningKeyIsRejected() throws Exception { final CryptoTransform signer = randomBoolean() ? this::signDoc : this::signAssertions; Instant now = clock.instant();