From b4a9f2adf21141a4dbf51ef1835e4c4b2488bba7 Mon Sep 17 00:00:00 2001 From: igorls <4753812+igorls@users.noreply.github.com> Date: Sat, 2 May 2026 22:58:57 -0300 Subject: [PATCH] style: ruff format touched files (PR #1322) CI requires whole-file format on touched files; pre-existing drift only. --- tests/test_backends.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_backends.py b/tests/test_backends.py index 8364dc7..5a4eb4b 100644 --- a/tests/test_backends.py +++ b/tests/test_backends.py @@ -730,9 +730,9 @@ def test_make_client_quarantines_only_on_first_call_per_palace(tmp_path, monkeyp ChromaBackend.make_client(palace_path) ChromaBackend.make_client(palace_path) - assert calls == [ - palace_path - ], "quarantine_stale_hnsw should fire once per palace per process, not on every reconnect" + assert calls == [palace_path], ( + "quarantine_stale_hnsw should fire once per palace per process, not on every reconnect" + ) def test_make_client_quarantines_each_palace_independently(tmp_path, monkeypatch):