Skip to content

Commit

Permalink
KEYCLOAK-15921 Fix auth server URL
Browse files Browse the repository at this point in the history
  • Loading branch information
hmlnarik committed Oct 23, 2020
1 parent 4f93dc8 commit e80538c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 50,7 @@ public void testCustomEntityNotSet() throws Exception {

// Find the Issuer element
Element issuerElement = DocumentUtil.getDirectChildElement(document.getDocumentElement(), ASSERTION_NSURI.get(), "Issuer");
Assert.assertEquals("Unexpected Issuer element value", "https://localhost:8543/auth/realms/consumer", issuerElement.getTextContent());
Assert.assertEquals("Unexpected Issuer element value", getAuthServerRoot() "realms/consumer", issuerElement.getTextContent());
}
catch (Exception ex)
{
Expand Down

0 comments on commit e80538c

Please sign in to comment.