From 2857948c1ead60903aeba2228fd6911ab4efcbfe Mon Sep 17 00:00:00 2001 From: igorls <4753812+igorls@users.noreply.github.com> Date: Sat, 2 May 2026 23:00:07 -0300 Subject: [PATCH] style: ruff format tests/test_cli.py (PR #1319) --- tests/test_cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 74521e6..7a7deba 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -930,9 +930,9 @@ def test_cmd_compress_stores_results(mock_config_cls, capsys): # Verify the compress output goes to the closets collection so that # palace.get_closets_collection() / searcher can read it back (#1244). (call_args, _kwargs) = mock_backend.get_or_create_collection.call_args - assert call_args[1] == "mempalace_closets", ( - f"compress should write to mempalace_closets, got {call_args[1]!r}" - ) + assert ( + call_args[1] == "mempalace_closets" + ), f"compress should write to mempalace_closets, got {call_args[1]!r}" assert "mempalace_closets" in out