Skip to content

Commit 8146601

Browse files
committed
IDM-10.2: Fix provisional check
1 parent 44f8837 commit 8146601

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/python_testing/spec_parsing_support.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,9 @@ def __init__(self, cluster, cluster_id, name):
216216
except (KeyError, StopIteration):
217217
self._derived = None
218218

219-
if list(cluster.iter('provisionalConform')):
220-
self._is_provisional = True
219+
for id in cluster.iter('clusterIds'):
220+
if list(id.iter('provisionalConform')):
221+
self._is_provisional = True
221222

222223
try:
223224
classification = next(cluster.iter('classification'))

0 commit comments

Comments
 (0)