Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cjao committed Jan 20, 2025
1 parent 2b09192 commit 9af8b53
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/functional_tests/workflow_stack_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ def workflow(a, b):
dispatch_id = ct.dispatch(workflow)(a=1, b=2)
workflow_result = rm.get_result(dispatch_id, wait=True)

node_res = workflow_result.get_node_result(0)
assert node_res["stderr"] == ""
assert node_res["error"] == ""
assert workflow_result.error is None
assert workflow_result.status == Result.COMPLETED
assert workflow_result.result == 3
Expand Down

0 comments on commit 9af8b53

Please sign in to comment.