From 626b61eb89dd95640cf1d3a4b8774d555bf32d11 Mon Sep 17 00:00:00 2001 From: Valay Dave Date: Thu, 27 Jun 2024 00:21:56 -0700 Subject: [PATCH] [parallel] fix tests for tag-catch for ubf based on new changes to core. --- test/core/tests/tag_catch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/tests/tag_catch.py b/test/core/tests/tag_catch.py index a326a466844..36b4b2069dc 100644 --- a/test/core/tests/tag_catch.py +++ b/test/core/tests/tag_catch.py @@ -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