From 4877513bbf3dccb35e42ec5c3d62fbf4c0ee2f55 Mon Sep 17 00:00:00 2001 From: Barcode Betty Date: Tue, 9 Jun 2026 05:23:36 +0000 Subject: [PATCH] style: ruff format conformance (CAR-1335) - tests/test_openapi.py: collapse 2 blank lines to 1 (ruff format) - tests/conftest.py: collapse 2 blank lines to 1 (ruff format) These format nits block lint (a hard gate). The conftest.py one was introduced in CAR-1132 (#42) and would have blocked every subsequent PR on dev until fixed. Refs CAR-1335, CAR-1135. Co-Authored-By: Paperclip --- tests/conftest.py | 1 - tests/test_openapi.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 1958022..133f726 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -117,7 +117,6 @@ def _register_event_listeners(): event.listen(cls, "before_insert", _set_timestamp_defaults) - TEST_JWT_SECRET = secrets.token_urlsafe(32) TEST_SERVICE_KEY = secrets.token_urlsafe(32) TEST_FERNET_KEY = "7reF42nmTwbdN21PBoubGp7h_FU8qSimstmlaMLoRK8=" diff --git a/tests/test_openapi.py b/tests/test_openapi.py index d450430..1abea55 100644 --- a/tests/test_openapi.py +++ b/tests/test_openapi.py @@ -18,6 +18,7 @@ def test_dispose_engine_importable_from_database(): assert callable(dispose_engine) assert dispose_engine.__name__ == "dispose_engine" + EXPECTED_ROUTES = [ # Auth (3 — register/login/refresh are handled by Better-Auth service) ("get", "/auth/me"),