Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ async def test_multi_server_mcp_client(
client = MultiServerMCPClient(
{
"math": {
"command": "python",
"command": "python3",
"args": [math_server_path],
"transport": "stdio",
},
"weather": {
"command": "python",
"command": "python3",
"args": [weather_server_path],
"transport": "stdio",
},
Expand Down Expand Up @@ -105,7 +105,7 @@ async def test_multi_server_connect_methods(
client = MultiServerMCPClient(
{
"math": {
"command": "python",
"command": "python3",
"args": [math_server_path],
"transport": "stdio",
},
Expand Down Expand Up @@ -147,7 +147,7 @@ async def test_get_prompt():
client = MultiServerMCPClient(
{
"math": {
"command": "python",
"command": "python3",
"args": [math_server_path],
"transport": "stdio",
}
Expand Down