From 2f0b60a6d974786281425cb6c89eaa7e835dd093 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Tue, 10 Jun 2025 11:48:53 -0400 Subject: [PATCH] Update test_proxy.py --- tests/server/test_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/server/test_proxy.py b/tests/server/test_proxy.py index 2f78d964b..68524ad2f 100644 --- a/tests/server/test_proxy.py +++ b/tests/server/test_proxy.py @@ -197,7 +197,7 @@ class TestTools: async with Client(proxy_server) as client: tools = await client.list_tools() - assert "greet" not in tools + assert not any(t.name == "greet" for t in tools) class TestResources: