From 8bb11a588cdeab6510751beeec090d1851b29b77 Mon Sep 17 00:00:00 2001 From: Harry Date: Tue, 11 Nov 2025 16:13:46 +0800 Subject: [PATCH] fix(tests): fix end node missing ouputs --- .../services/test_workflow_service.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/api/tests/test_containers_integration_tests/services/test_workflow_service.py b/api/tests/test_containers_integration_tests/services/test_workflow_service.py index 5dfd1b367e..88c6313f64 100644 --- a/api/tests/test_containers_integration_tests/services/test_workflow_service.py +++ b/api/tests/test_containers_integration_tests/services/test_workflow_service.py @@ -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": [],