refactor: remove placeholder join step

This commit is contained in:
lda
2026-09-05 17:47:57 +07:00 Verified
parent 043bda6a34
commit cccdbc0a47
42 changed files with 88 additions and 309 deletions
+1 -1
View File
@@ -226,7 +226,7 @@ def test_draft_step_requires_exactly_one_kind_key() -> None:
assert isinstance(steps, dict)
echo = steps["echo"]
assert isinstance(echo, dict)
echo["join"] = {}
echo["end"] = {"outcome": "ok"}
with pytest.raises(ValidationError) as exc_info:
WorkflowDraft.model_validate(draft)