Skip to content

Commit

Permalink
Merge branch 'master' into wake_on_lan_to_spec
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Nov 7, 2023
2 parents 5d6e9b0 + 3f91ae9 commit b885c4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/python_testing/TC_DeviceBasicComposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -867,11 +867,11 @@ def test_IDM_10_3(self):
self.record_warning(self.get_test_name(), location=location,
problem='Standard cluster found on device, but is not present in spec data')
continue
if int(clusters[cluster_id].revision) != cluster[GlobalAttributesId.CLUSTER_REVISION_ID]:
if int(clusters[cluster_id].revision) != cluster[GlobalAttributeIds.CLUSTER_REVISION_ID]:
location = AttributePathLocation(endpoint_id=endpoint_id, cluster_id=cluster_id,
attribute_id=GlobalAttributesId.CLUSTER_REVISION_ID)
attribute_id=GlobalAttributeIds.CLUSTER_REVISION_ID)
self.record_error(self.get_test_name(
), location=location, problem=f'Revision found on cluster ({cluster[GlobalAttributesId.CLUSTER_REVISION_ID]}) does not match revision listed in the spec ({clusters[cluster_id].revision})')
), location=location, problem=f'Revision found on cluster ({cluster[GlobalAttirbuteIds.CLUSTER_REVISION_ID]}) does not match revision listed in the spec ({clusters[cluster_id].revision})')
success = False
if not success:
# TODO: Right now, we have failures in all-cluster, so we can't fail this test and keep it in CI. For now, just log.
Expand Down

0 comments on commit b885c4d

Please sign in to comment.