We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eaf042 commit 2719533Copy full SHA for 2719533
src/python_testing/TC_IDM_1_2.py
@@ -85,7 +85,8 @@ async def test_TC_IDM_1_2(self):
85
for i in endpoints:
86
dut_ep_cluster_ids = wildcard_descriptor[i][Clusters.Descriptor][Clusters.Descriptor.Attributes.ServerList]
87
unsupported_clusters[i] = list(set(all_cluster_ids) - set(dut_ep_cluster_ids))
88
- supported_clusters[i] = set(dut_ep_cluster_ids)
+ # We only want to consider the set of standard clusters as "supported clusters", so use the intersection
89
+ supported_clusters[i] = set(dut_ep_cluster_ids).intersection(set(all_cluster_ids))
90
91
# This is really unlikely to happen on any real product, so we're going to assert here if we can't find anything
92
# since it's likely a test error
0 commit comments