mirror of https://github.com/langgenius/dify.git
fix(tests): fix end node missing ouputs
This commit is contained in:
parent
44f451bd7d
commit
8bb11a588c
|
|
@ -651,7 +651,11 @@ class TestWorkflowService:
|
|||
{
|
||||
"id": "end",
|
||||
"type": "end",
|
||||
"data": {"type": "end", "title": "End"},
|
||||
"data": {
|
||||
"type": "end",
|
||||
"title": "End",
|
||||
"outputs": [{"variable": "output", "value_selector": ["start", "text"]}],
|
||||
},
|
||||
},
|
||||
],
|
||||
"edges": [],
|
||||
|
|
|
|||
Loading…
Reference in New Issue