Skip to content

Commit 6ff1afa

Browse files
committed
Resolving issue created during merge where nodeId args need to be renamed
1 parent e2ae6a0 commit 6ff1afa

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

src/python_testing/support_modules/idm_support.py

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -76,17 +76,6 @@ def client_cmd(cmd_class):
7676
return None
7777

7878

79-
# ============================================================================
80-
# IDMSupport Helper Class
81-
# ============================================================================
82-
83-
class IDMSupport:
84-
"""Helper class for IDM test support functionality."""
85-
86-
def __init__(self, test_instance):
87-
self.test = test_instance
88-
89-
9079
# ============================================================================
9180
# IDMBaseTest - Main Base Class
9281
# ============================================================================
@@ -166,7 +155,7 @@ async def get_dut_acl(self, ctrl: ChipDeviceCtrl, ep: int = ROOT_NODE_ENDPOINT_I
166155
ACL list from the DUT
167156
"""
168157
sub = await ctrl.ReadAttribute(
169-
nodeid=self.dut_node_id,
158+
nodeId=self.dut_node_id,
170159
attributes=[(ep, Clusters.AccessControl.Attributes.Acl)],
171160
keepSubscriptions=False,
172161
fabricFiltered=True
@@ -712,7 +701,7 @@ async def read_all_events_attributes(self):
712701
Returns:
713702
Read response with events and attributes
714703
"""
715-
return await self.default_controller.Read(nodeid=self.dut_node_id, attributes=[()], events=[()])
704+
return await self.default_controller.Read(nodeId=self.dut_node_id, attributes=[()], events=[()])
716705

717706
async def read_data_version_filter_multiple_clusters(self, endpoint, cluster, attribute, other_cluster, other_attribute):
718707
"""Read from multiple clusters with data version filter on one cluster.

0 commit comments

Comments
 (0)