Skip to content

Commit 07c60a2

Browse files
authored
fix: replace failing integ test (#178)
1 parent 8752022 commit 07c60a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integ/test_aws_mcp_server_happy_path.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def verify_json_response(response: CallToolResult):
101101
'aws___get_regional_availability',
102102
{'resource_type': 'cfn', 'region': 'us-east-1'},
103103
),
104-
('aws___call_aws', {'cli_command': 'aws s3 ls', 'max_results': 10}),
104+
('aws___call_aws', {'cli_command': 'aws lambda list-functions', 'max_results': 10}),
105105
],
106106
ids=[
107107
'list_regions',
@@ -110,7 +110,7 @@ def verify_json_response(response: CallToolResult):
110110
'recommend',
111111
'read_documentation',
112112
'get_regional_availability',
113-
'call_aws',
113+
'list_lambda_functions',
114114
],
115115
)
116116
@pytest.mark.asyncio(loop_scope='module')

0 commit comments

Comments
 (0)