test: align output binding integration coverage

This commit is contained in:
lda
2026-07-23 05:40:34 +07:00 Verified
parent 9f427c7e61
commit 92b7c6dd77
4 changed files with 20 additions and 22 deletions
+3 -1
View File
@@ -103,7 +103,9 @@ async def test_registered_output_bindings_tool_delegates_typed_bindings_once(
)
service = WfMcpService(
store=FileStore(tmp_path / "tool_invocation_store"),
artifact_store=FileWorkflowArtifactStore(tmp_path / "tool_invocation_artifacts"),
artifact_store=FileWorkflowArtifactStore(
tmp_path / "tool_invocation_artifacts"
),
draft_workspace_store=FileDraftWorkspaceStore(
tmp_path / "tool_invocation_drafts"
),
+8 -2
View File
@@ -361,8 +361,14 @@ def test_workflow_surface_sets_ordered_canonical_step_output_bindings(
revision=created["revision"],
step_id="call",
bindings=[
OutputBinding(source="value", target="state.report"),
OutputBinding(source="value", target="state.audit"),
OutputBinding(
source=LocalPath.parse("value"),
target=StatePath.parse("state.report"),
),
OutputBinding(
source=LocalPath.parse("value"),
target=StatePath.parse("state.audit"),
),
],
)
)