From 885eff2350fd95c0e0ee078e4e3e89aff000ce35 Mon Sep 17 00:00:00 2001 From: Hongming Wang Date: Fri, 1 May 2026 18:28:24 -0700 Subject: [PATCH] test: drop unused _OTHER_PEER constant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit github-code-quality bot flagged it as an unused module-level global — correctly. The earlier draft of the negative-cache test was going to exercise two distinct peer IDs hitting the registry concurrently, but the test was simplified to a single-peer flow before merge and the constant lost its consumer. Resolves the only blocking review thread on PR #2471. Co-Authored-By: Claude Opus 4.7 (1M context) --- workspace/tests/test_a2a_mcp_server.py | 1 - 1 file changed, 1 deletion(-) diff --git a/workspace/tests/test_a2a_mcp_server.py b/workspace/tests/test_a2a_mcp_server.py index f8111410..f847cf72 100644 --- a/workspace/tests/test_a2a_mcp_server.py +++ b/workspace/tests/test_a2a_mcp_server.py @@ -258,7 +258,6 @@ def test_build_channel_notification_handles_missing_fields_gracefully(): _PEER_UUID = "11111111-2222-3333-4444-555555555555" -_OTHER_PEER = "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" @pytest.fixture()