We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 474f072 commit d2f1146Copy full SHA for d2f1146
1 file changed
tests/client/test_stdio_cm.py
@@ -3,14 +3,10 @@
3
from mcp import StdioServerParameters
4
from mcp.client.stdio import stdio_client
5
6
-MCP_SERVER = {
7
- "command": "tee",
8
-}
9
-
10
11
@pytest.mark.anyio
12
async def test_context_manager_exiting():
13
- async with stdio_client(StdioServerParameters(**MCP_SERVER)) as (
+ async with stdio_client(StdioServerParameters(command="tee")) as (
14
read_stream,
15
write_stream,
16
):
0 commit comments