Skip to content

Commit b70a64f

Browse files
authored
Fix: [AEA-0000] - no trailing slash in callback url (#414)
## Summary - Routine Change ### Details - no trailing slash in callback url
1 parent f8e96fa commit b70a64f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

methods/shared/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_eps_fhir_authenticator(user, env, url, product):
5151
# changed from example.org so it is responsive
5252
# if this url is unavailable, then you will see tests fail on a request to keycloak
5353
# as keycloak returns a 302 eventually to a this callback url.
54-
callback_url="https://google.com/", # pyright: ignore [reportArgumentType]
54+
callback_url="https://google.com", # pyright: ignore [reportArgumentType]
5555
client_id=client_id,
5656
client_secret=client_secret,
5757
scope=scope,
@@ -77,7 +77,7 @@ def get_pfp_apigee_authenticator(env, url):
7777
# changed from example.org so it is responsive
7878
# if this url is unavailable, then you will see tests fail on a request to keycloak
7979
# as keycloak returns a 302 eventually to a this callback url.
80-
callback_url="https://google.com/", # pyright: ignore [reportArgumentType]
80+
callback_url="https://google.com", # pyright: ignore [reportArgumentType]
8181
client_id=client_id,
8282
client_secret=client_secret,
8383
scope=scope,

0 commit comments

Comments
 (0)