fix(copilot): add missing dry_run param to http_credentials_test calls

After the dev merge, RunBlockTool._execute() gained a required
keyword-only `dry_run` parameter. The two integration tests in
TestRunBlockToolAuthenticatedHttp were not updated, causing type-check
and test failures across all Python versions.
This commit is contained in:
Zamil Majdy
2026-03-29 04:33:41 +02:00
parent ae93d62378
commit a75b521e6b

View File

@@ -866,6 +866,7 @@ class TestRunBlockToolAuthenticatedHttp:
session=session,
block_id=block.id,
input_data={"url": "https://api.example.com/data", "method": "GET"},
dry_run=False,
)
assert isinstance(response, SetupRequirementsResponse)
@@ -907,6 +908,7 @@ class TestRunBlockToolAuthenticatedHttp:
session=session,
block_id=block.id,
input_data={},
dry_run=False,
)
assert isinstance(response, BlockDetailsResponse)