Update test_proxy.py

This commit is contained in:
Jeremiah Lowin 2025-06-10 11:48:53 -04:00
commit 2f0b60a6d9

View file

@ -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: