Skip to content

Commit

Permalink
Fix test name typo (#31347)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccruzagralopes authored Jan 11, 2024
1 parent 8f7b0ae commit f888807
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python_testing/TC_ACL_2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class TC_ACL_2_2(MatterBaseTest):
def desc_TC_ACL_2_2(self) -> str:
return "[TC-ACL-2.2] Cluster endpoint"

def steps_TC_ACE_2_2(self) -> list[TestStep]:
def steps_TC_ACL_2_2(self) -> list[TestStep]:
steps = [
TestStep(1, "Commissioning, already done", is_commissioning=True),
TestStep(2, "TH1 reads DUT Descriptor cluster ServerList attribute from Endpoint 0"),
Expand All @@ -33,7 +33,7 @@ def steps_TC_ACE_2_2(self) -> list[TestStep]:
return steps

@async_test_body
async def test_TC_ACE_2_2(self):
async def test_TC_ACL_2_2(self):
self.step(1)
self.step(2)
data = await self.default_controller.ReadAttribute(nodeid=self.dut_node_id, attributes=[(Clusters.Descriptor.Attributes.ServerList)])
Expand Down

0 comments on commit f888807

Please sign in to comment.