yihuang2026 commited on
Commit
8249a6d
·
unverified ·
1 Parent(s): a14756d
Files changed (1) hide show
  1. tests/client/test_client.py +3 -0
tests/client/test_client.py CHANGED
@@ -194,6 +194,9 @@ async def test_client_nested_context_manager(fastmcp_server):
194
  async with client:
195
  assert client.is_connected()
196
 
 
 
 
197
  # After connection
198
  assert not client.is_connected()
199
 
 
194
  async with client:
195
  assert client.is_connected()
196
 
197
+ async with client:
198
+ assert client.is_connected()
199
+
200
  # After connection
201
  assert not client.is_connected()
202