Jeremiah Lowin commited on
Commit
fee3201
·
1 Parent(s): ed6ec93

Update test_proxy.py

Browse files
Files changed (1) hide show
  1. tests/server/test_proxy.py +1 -1
tests/server/test_proxy.py CHANGED
@@ -197,7 +197,7 @@ class TestTools:
197
 
198
  async with Client(proxy_server) as client:
199
  tools = await client.list_tools()
200
- assert "greet" not in tools
201
 
202
 
203
  class TestResources:
 
197
 
198
  async with Client(proxy_server) as client:
199
  tools = await client.list_tools()
200
+ assert not any(t.name == "greet" for t in tools)
201
 
202
 
203
  class TestResources: