chore: polish interrupt contract implementation

This commit is contained in:
lda
2026-07-01 06:07:45 +07:00 Verified
parent 5dd56d286f
commit 0038a3a3ce
2 changed files with 4 additions and 3 deletions
+3 -1
View File
@@ -184,7 +184,9 @@ async def test_interrupt_resume_payload_validates_before_state_mutation() -> Non
),
EndNode(id="end", type="end", outcome="submitted"),
],
edges=[Edge.model_validate({"from": "ask", "outcome": "submitted", "to": "end"})],
edges=[
Edge.model_validate({"from": "ask", "outcome": "submitted", "to": "end"})
],
)
interrupted = await execute_workflow_async(workflow, {}, {})