Skip to content

Commit

Permalink
Update src/python_testing/TC_IDM_3_2.py
Browse files Browse the repository at this point in the history
Co-authored-by: C Freeman <[email protected]>
  • Loading branch information
austina-csa and cecille authored Oct 7, 2024
1 parent c5e68d7 commit 0dd6a64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/python_testing/TC_IDM_3_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ async def test_TC_IDM_3_2(self):
for cluster_id in self.xml_clusters:
xml_cluster = self.xml_clusters[cluster_id]
attributes = xml_cluster.attributes
for attribute_id in attributes:
for attribute_id, xml_attribute in attributes.items():

xml_attribute = attributes[attribute_id]
write_access = xml_attribute.write_access
if write_access:
Expand Down

0 comments on commit 0dd6a64

Please sign in to comment.