fix(tests): apply ruff format after rebase resolution

The collection_name plumbing rebase produced a few unformatted blocks
in test_mcp_server.py and test_searcher.py; bringing them in line with
the 0.4.x CI pin so test-windows / lint stay green.
This commit is contained in:
Igor Lins e Silva
2026-05-07 09:10:22 -03:00
parent ec6d2dde01
commit e9aee19433
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -523,9 +523,9 @@ class TestWriteTools:
assert result1["success"] is True
assert result2["success"] is True
assert result1["drawer_id"] != result2["drawer_id"], (
"Documents with shared header but different content must have distinct drawer IDs"
)
assert (
result1["drawer_id"] != result2["drawer_id"]
), "Documents with shared header but different content must have distinct drawer IDs"
def test_delete_drawer(self, monkeypatch, config, palace_path, seeded_collection, kg):
_patch_mcp_server(monkeypatch, config, kg)
+3 -3
View File
@@ -327,9 +327,9 @@ class TestSearchCLI:
captured = capsys.readouterr()
first_block, _, _ = captured.out.partition("[2]")
# Lexical match must rank first
assert "b.md" in first_block, (
f"expected lexical match 'b.md' at rank 1, got:\n{captured.out}"
)
assert (
"b.md" in first_block
), f"expected lexical match 'b.md' at rank 1, got:\n{captured.out}"
# Non-zero bm25 reported
assert "bm25=" in first_block
assert "bm25=0.0" not in first_block