KEYCLOAK-7743 Fix broken X.509 tests
This commit is contained in:
parent
3355399b4e
commit
d99dca2db3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue