chore(mcp-service): upgrade fastmcp from 2.10.6 to 2.13.0.2 (#36014)

This commit is contained in:
Amin Ghadersohi
2025-11-08 11:52:03 +10:00
committed by GitHub
parent 909bd877c9
commit 3167a0dbc0
4 changed files with 60 additions and 12 deletions

View File

@@ -482,7 +482,7 @@ class TestExecuteSql:
}
async with Client(mcp_server) as client:
with pytest.raises(ToolError, match="minimum of 1"):
with pytest.raises(ToolError, match="greater than or equal to 1"):
await client.call_tool("execute_sql", {"request": request})
# Test limit too high
@@ -493,5 +493,5 @@ class TestExecuteSql:
}
async with Client(mcp_server) as client:
with pytest.raises(ToolError, match="maximum of 10000"):
with pytest.raises(ToolError, match="less than or equal to 10000"):
await client.call_tool("execute_sql", {"request": request})