Skip to content

Commit c663fe0

Browse files
committed
style(tests): collapse extra blank lines after the new tests (E303)
The two tests added by this PR were each followed by three blank lines before the next top-level def; PEP8/ruff E303 allows at most two. The repo's ruff config does not enable E3 today so this is latent, but it would surface under a stricter lint gate.
1 parent f567a0a commit c663fe0

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

tests/test_mcp_v2.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,6 @@ def test_search_no_lance_index_returns_failure_envelope(monkeypatch, ladybug_gra
603603
assert found.results
604604

605605

606-
607606
def test_search_cross_kind_filter_returns_failure(monkeypatch, ladybug_graph) -> None:
608607
monkeypatch.setattr("mcp_v2.run_search", lambda *args, **kwargs: _fake_search_rows())
609608
out = search_v2("ChatService", filter={"path_prefix": "/api"}, graph=ladybug_graph)

tests/test_search_lancedb.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ def test_rrf_merge_reinforced_row_across_lists_outranks_singleton() -> None:
5656
assert merged[0]["filename"] == "a.java"
5757

5858

59-
6059
def test_java_enriched_columns_include_symbol_identity_fields() -> None:
6160
assert "symbol_id" in JAVA_ENRICHED_COLUMNS
6261
assert "metadata" in JAVA_ENRICHED_COLUMNS

0 commit comments

Comments
 (0)