From c4851ff0ae22da40518b1f9db86ad7dcc35d406c Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Fri, 3 Jul 2026 09:38:46 +0200 Subject: [PATCH] refactor: format test_db.py for consistency Co-Authored-By: Claude Sonnet 5 --- tests/admin/test_db.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/admin/test_db.py b/tests/admin/test_db.py index 8e6052d..abc8e96 100644 --- a/tests/admin/test_db.py +++ b/tests/admin/test_db.py @@ -13,7 +13,9 @@ def _setup(): def test_log_action_then_list_actions_returns_it(users_db_path): _setup() - admin_db.log_action("admin@ex.fr", "subscription_status_change", 42, "active → cancelled") + admin_db.log_action( + "admin@ex.fr", "subscription_status_change", 42, "active → cancelled" + ) rows = admin_db.list_actions() assert len(rows) == 1