From 88869052f23d86dbd6a77599a2eec2ec5793d0ab Mon Sep 17 00:00:00 2001 From: Alex Blank Date: Mon, 27 Jul 2026 20:28:25 +0200 Subject: [PATCH] style(v2): normalize repository safety test --- tests/integration/test_repository_safety.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/test_repository_safety.py b/tests/integration/test_repository_safety.py index d90c94b..b227b28 100644 --- a/tests/integration/test_repository_safety.py +++ b/tests/integration/test_repository_safety.py @@ -61,7 +61,8 @@ async def test_admin_can_list_and_inspect_repositories(tmp_path: Path) -> None: ) as client: assert ( await client.post( - "/api/v2/setup", json={"username": "admin", "password": "a secure password"} + "/api/v2/setup", + json={"username": "admin", "password": "a secure password"}, ) ).status_code == 201 csrf = client.cookies["backup_tool_csrf"]