@@ -57,9 +57,7 @@ def steps_TC_DISHM_1_2(self) -> list[TestStep]:
57
57
steps = [
58
58
TestStep (1 , "Commissioning, already done" , is_commissioning = True ),
59
59
TestStep (2 , "TH reads from the DUT the SupportedModes attribute." ),
60
- TestStep (3 , "TH reads from the DUT the CurrentMode attribute." ),
61
- TestStep (4 , "TH reads from the DUT the OnMode attribute." ),
62
- TestStep (5 , "TH reads from the DUT the StartUpMode attribute." )
60
+ TestStep (3 , "TH reads from the DUT the CurrentMode attribute." )
63
61
]
64
62
return steps
65
63
@@ -92,18 +90,6 @@ async def test_TC_DISHM_1_2(self):
92
90
mode = self .cluster .Attributes .CurrentMode
93
91
await self .read_and_check_mode (endpoint = endpoint , mode = mode , supported_modes = supported_modes )
94
92
95
- self .step (4 )
96
- # Verify that the OnMode attribute has a valid value or null.
97
- mode = self .cluster .Attributes .OnMode
98
- await self .read_and_check_mode (endpoint = endpoint , mode = mode ,
99
- supported_modes = supported_modes , is_nullable = True )
100
-
101
- self .step (5 )
102
- # Verify that the StartUpMode has a valid value or null
103
- mode = self .cluster .Attributes .StartUpMode
104
- await self .read_and_check_mode (endpoint = endpoint , mode = mode ,
105
- supported_modes = supported_modes , is_nullable = True )
106
-
107
93
108
94
if __name__ == "__main__" :
109
95
default_matter_test_main ()
0 commit comments