From 4b619b564cf135b0178a0b94de32b38b832d4f5c Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 8 Dec 2023 15:35:45 +0100 Subject: [PATCH] formatting --- recipes/authentik/tests_authentik/setup_authentik.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/authentik/tests_authentik/setup_authentik.py b/recipes/authentik/tests_authentik/setup_authentik.py index 60dd5ef..9aa6e3b 100644 --- a/recipes/authentik/tests_authentik/setup_authentik.py +++ b/recipes/authentik/tests_authentik/setup_authentik.py @@ -26,8 +26,8 @@ def setup_admin_state(context: BrowserContext, env_config: dict[str, str], DIR: expect(page.get_by_text(welcome_message)).to_be_visible() # login - page.locator('input[name="uidField"]').fill(ADMIN_USER) - page.locator('ak-stage-identification input[name="password"]').fill(ADMIN_PASS) + page.locator("input[name='uidField']").fill(ADMIN_USER) + page.locator("ak-stage-identification input[name='password']").fill(ADMIN_PASS) page.get_by_role("button", name="Log In").click() expect(page.locator("ak-library")).to_be_visible()