Skip to content

Commit 7a99dc6

Browse files
committed
fix test failures
1 parent 6ba0faa commit 7a99dc6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/api/test_workfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ def test_run_workflow(self):
8989
variables = [{"name": "@min_credit_line", "value": "7"}]
9090
workfile_id = alpine_client.workfile.get_id(workfile_name, workspace_id)
9191
process_id = alpine_client.workfile.process.run(workfile_id, variables)
92-
alpine_client.workfile.process.wait_until_finished(process_id)
92+
alpine_client.workfile.process.wait_until_finished(workfile_id, process_id)
9393

9494
def test_run_workflow_variable_quote(self):
9595
variables = [{"name": "@min_credit_line", "value": "7"}, {"name": "@outlook", "value": "'sunny'"}]
9696
workfile_id = alpine_client.workfile.get_id(workfile_name, workspace_id)
9797
process_id = alpine_client.workfile.process.run(workfile_id, variables)
98-
alpine_client.workfile.process.wait_until_finished(process_id)
98+
alpine_client.workfile.process.wait_until_finished(workfile_id, process_id)
9999

100100
def test_query_workflow_status(self):
101101
valid_workfile_status = ["WORKING", "FINISHED"]

0 commit comments

Comments
 (0)