From 6052b1546db66f2ccc62a5fcf86762c115e35b18 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 1 Jun 2018 19:59:18 +0300 Subject: [PATCH] removed LANG-dependent check #7444 --- .../saml/processing/core/parsers/saml/SAMLParserTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/saml-core/src/test/java/org/keycloak/saml/processing/core/parsers/saml/SAMLParserTest.java b/saml-core/src/test/java/org/keycloak/saml/processing/core/parsers/saml/SAMLParserTest.java index e475643e58..00e0bb37c5 100644 --- a/saml-core/src/test/java/org/keycloak/saml/processing/core/parsers/saml/SAMLParserTest.java +++ b/saml-core/src/test/java/org/keycloak/saml/processing/core/parsers/saml/SAMLParserTest.java @@ -708,7 +708,8 @@ public class SAMLParserTest { @Test public void testInvalidEndElement() throws Exception { thrown.expect(ParsingException.class); - thrown.expectMessage(containsString("The element type \"NameIDFormat\" must be terminated by the matching end-tag \"\".")); + // see KEYCLOAK-7444 + thrown.expectMessage(containsString("NameIDFormat")); assertParsed("saml20-entity-descriptor-idp-invalid-end-element.xml", EntityDescriptorType.class); }