File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/aws-api-mcp-server/tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -822,7 +822,7 @@ async def test_get_execution_plan_is_available_when_env_var_is_set():
822822
823823 from awslabs .aws_api_mcp_server .server import server
824824
825- tools = await server ._list_tools ()
825+ tools = await server ._list_tools (context = None )
826826 tool_names = [tool .name for tool in tools ]
827827 assert 'get_execution_plan' in tool_names
828828
@@ -838,7 +838,7 @@ async def test_get_execution_plan_is_available_when_env_var_is_not_set():
838838
839839 from awslabs .aws_api_mcp_server .server import server
840840
841- tools = await server ._list_tools ()
841+ tools = await server ._list_tools (context = None )
842842 tool_names = [tool .name for tool in tools ]
843843 assert 'get_execution_plan' not in tool_names
844844
You can’t perform that action at this time.
0 commit comments