Skip to content

Commit 6c3d357

Browse files
committed
Fix token regex in test
1 parent 6805f92 commit 6c3d357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/oidc/test_auth_oidc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ class TestGalaxyOIDCLoginIntegration(AbstractTestCases.BaseKeycloakIntegrationTe
225225
Test Galaxy's keycloak-based OIDC login integration.
226226
"""
227227

228-
REGEX_GALAXY_CSRF_TOKEN = re.compile(r"session_csrf_token\": \"(.*)\"")
228+
REGEX_GALAXY_CSRF_TOKEN = re.compile(r"session_csrf_token = \"(.*)\"")
229229
provider_name = "keycloak"
230230

231231
@classmethod

0 commit comments

Comments
 (0)