style: ruff format tests/test_cli.py (PR #1319)

This commit is contained in:
igorls
2026-05-02 23:00:07 -03:00
parent 4b0fc44451
commit 2857948c1e
+3 -3
View File
@@ -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