diff --git a/src/python_testing/TC_CGEN_2_5.py b/src/python_testing/TC_CGEN_2_5.py index 175301e0d9c82d..6d1097d28cb00d 100644 --- a/src/python_testing/TC_CGEN_2_5.py +++ b/src/python_testing/TC_CGEN_2_5.py @@ -26,8 +26,7 @@ import random import chip.clusters as Clusters -from chip.exceptions import ChipStackError -from matter_testing_support import DiscoveryFilterType, MatterBaseTest, async_test_body, default_matter_test_main +from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main from mobly import asserts @@ -62,10 +61,12 @@ async def test_TC_CGEN_2_5(self): logging.info('Step 3 - TH reads the TCMinRequiredVersion attribute') attr = Clusters.GeneralCommissioning.Attributes.TCMinRequiredVersion tc_min_requried_version = await self.read_single_attribute(dev_ctrl=self.th1, node_id=self.dut_node_id, endpoint=0, attribute=attr) + print(f"tc_min_requried_version: {tc_min_requried_version}") logging.info('Step 4 - TH reads the TCAcknowledgementsRequired attribute') attr = Clusters.GeneralCommissioning.Attributes.TCAcknowledgementsRequired tc_required = await self.read_single_attribute(dev_ctrl=self.th1, node_id=self.dut_node_id, endpoint=0, attribute=attr) + print(f"tc_required: {tc_required}") logging.info('Step 5 - TH sends SetTCAcknowledgements with greater values than current and verify set') new_accepted_version = tc_accepted_version + 1