Skip to content

Commit

Permalink
Fix test_collection_explicit_and_implicit test
Browse files Browse the repository at this point in the history
which was working only because `workflow_id` and `history_id` were the
same before commit 85630e2 .
  • Loading branch information
nsoranzo committed Mar 4, 2024
1 parent 031a859 commit 241fc3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/test_workflow_scheduling_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def test_collection_explicit_and_implicit(self):
inputs = {
"0": {"src": "hdca", "id": hdca1["id"]},
}
self.workflow_populator.invoke_workflow_and_wait(history_id, workflow_id, inputs)
self.workflow_populator.invoke_workflow_and_wait(workflow_id, history_id, inputs)
self.dataset_populator.wait_for_history(history_id, assert_ok=True)
assert "a\nc\nb\nd\ne\ng\nf\nh\n" == self.dataset_populator.get_history_dataset_content(history_id, hid=0)

Expand Down

0 comments on commit 241fc3b

Please sign in to comment.