Skip to content

Commit

Permalink
KEYCLOAK-7802 Fix broken HoKTest
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Zaoral <pzaoral@redhat.com>
  • Loading branch information
Pepo48 authored and pdrozd committed Jul 23, 2018
1 parent 1308a32 commit c4b375c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ private void addRedirectUrlForTls(RealmRepresentation testRealm, String clientId
for (ClientRepresentation client : testRealm.getClients()) {
if (client.getClientId().equals(clientId)) {
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());
break;
}
Expand Down

0 comments on commit c4b375c

Please sign in to comment.