refactor: fix lint warnings in webauthn login tests

This commit is contained in:
Johan Lundberg 2026-02-17 13:46:02 +01:00
parent ebe5497879
commit cd9469342b
No known key found for this signature in database
GPG key ID: A6C152738D03C7D1

View file

@ -75,7 +75,7 @@ async def test_webauthn_login_complete_without_state_returns_400(client: AsyncCl
async def test_webauthn_login_complete_returns_json_redirect(client: AsyncClient) -> None:
"""After successful auth, complete endpoint returns JSON with redirect URL."""
userid, _pk, credential_id, _att = await _setup_user_with_webauthn(client)
_userid, _pk, _credential_id, _att = await _setup_user_with_webauthn(client)
# Begin to get state into session
res1 = await client.get("/login/webauthn/begin")