Skip to content

Commit

Permalink
[parallel] fix tests for tag-catch for ubf based on new changes to core.
Browse files Browse the repository at this point in the history
  • Loading branch information
valayDave committed Jul 1, 2024
1 parent eaf5d9f commit 626b61e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/core/tests/tag_catch.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def check_results(self, flow, checker):
data = task.data
got = sorted(m.value for m in task.metadata if m.type == "attempt")
if flow._graph[step.id].parallel_step:
if "control" in task.id:
if "_node_" not in task.id:
assert_equals(list(map(str, range(attempts))), got)
else:
# non-control tasks have one attempt less for parallel steps
Expand Down

0 comments on commit 626b61e

Please sign in to comment.