Skip to content

Commit

Permalink
Restyled by autopep8
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and mkardous-silabs committed Nov 8, 2023
1 parent 9c98b2f commit f04149b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/python_testing/TC_ICDM_2_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async def read_icdm_attribute_expect_success(self, endpoint, attribute):

@async_test_body
async def test_TC_ICDM_2_1(self):

if not self.check_pics("ICDM.S"):
logger.info("Test skipped because PICS ICDM.S is not set")
return
Expand Down Expand Up @@ -85,9 +85,9 @@ async def test_TC_ICDM_2_1(self):
self.print_step(2, "Read ICDCounter Attribute")

ICDCounter = await self.read_icdm_attribute_expect_success(endpoint=endpoint,
attribute=attributes.ICDCounter)
attribute=attributes.ICDCounter)
asserts.assert_true(0 <= ICDCounter <= 4294967295,
"ICDCounter attribute does not fit in a uint32.")
"ICDCounter attribute does not fit in a uint32.")

# ClientsSupportedPerFabric attribute test
if (self.check_pics("ICDM.S.A0003")):
Expand All @@ -101,6 +101,5 @@ async def test_TC_ICDM_2_1(self):
"ClientsSupportedPerFabric attribute is smaller than minimum value (1).")



if __name__ == "__main__":
default_matter_test_main()

0 comments on commit f04149b

Please sign in to comment.