Spaces:
Running
Running
fix test
Browse files
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 |
|