KEYCLOAK-7743 Fix broken X.509 tests

This commit is contained in:
vmuzikar 2018-07-02 12:09:32 +02:00 committed by Pavel Drozd
parent 3355399b4e
commit d99dca2db3

View file

@ -217,7 +217,7 @@ public abstract class AbstractX509AuthenticationTest extends AbstractTestRealmKe
ClientRepresentation client = findTestApp(testRealm);
URI baseUri = URI.create(client.getRedirectUris().get(0));
URI redir = URI.create("https://localhost:" + System.getProperty("app.server.https.port", "8543") + baseUri.getRawPath());
URI redir = URI.create("https://localhost:" + System.getProperty("auth.server.https.port", "8543") + baseUri.getRawPath());
client.getRedirectUris().add(redir.toString());
testRealm.setBruteForceProtected(true);