mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
blueprints: add InternallyManagedMixin instead of large list (#18983)
* blueprints: add InternallyManagedMixin instead of large list Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix recursion Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix e2e tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
@@ -150,7 +150,7 @@ class TestProviderOAuth2OIDCImplicit(SeleniumTestCase):
|
||||
self.wait.until(ec.title_contains("authentik"))
|
||||
self.login()
|
||||
|
||||
body = self.parse_json_content()
|
||||
body = self.parse_json_content(self.driver.find_element(By.ID, "loginResult"))
|
||||
snippet = dumps(body, indent=2)[:500].replace("\n", " ")
|
||||
|
||||
profile = body.get("profile", {})
|
||||
@@ -240,7 +240,7 @@ class TestProviderOAuth2OIDCImplicit(SeleniumTestCase):
|
||||
|
||||
self.wait.until(ec.url_changes(current_url))
|
||||
|
||||
body = self.parse_json_content()
|
||||
body = self.parse_json_content(self.driver.find_element(By.ID, "loginResult"))
|
||||
snippet = dumps(body, indent=2)[:500].replace("\n", " ")
|
||||
|
||||
profile = body.get("profile", {})
|
||||
|
||||
Reference in New Issue
Block a user