@@ -90,9 +90,7 @@ def steps_TC_EWATERHTR_2_2(self) -> list[TestStep]:
90
90
"Event EWATERHTR.S.E00(BoostEnded) sent" ),
91
91
TestStep ("10a" , "TH reads from the DUT the HeatDemand" ,
92
92
"Value has to be 0x00 (no demand on any source)" ),
93
- TestStep ("10b" , "TH reads from the DUT the HeatDemand" ,
94
- "Value has to be 0x00 (no demand on any source)" ),
95
- TestStep ("10c" , "TH reads from the DUT the BoostState" ,
93
+ TestStep ("10b" , "TH reads from the DUT the BoostState" ,
96
94
"Value has to be 0 (Inactive)" ),
97
95
TestStep ("11" , "TH sends command Boost with Duration=600s,OneShot=True" ,
98
96
"Verify DUT responds w/ status SUCCESS(0x00) and Event EWATERHTR.S.E00(BoostStarted) sent with Duration=600 and OneShot=True" ),
@@ -267,15 +265,13 @@ async def test_TC_EWATERHTR_2_2(self):
267
265
268
266
self .step ("10" )
269
267
time .sleep (6 )
270
-
271
- self .step ("10a" )
272
268
event_data = events_callback .wait_for_event_report (Clusters .WaterHeaterManagement .Events .BoostEnded )
273
269
274
- self .step ("10b " )
270
+ self .step ("10a " )
275
271
heatDemand = await self .read_whm_attribute_expect_success (attribute = "HeatDemand" )
276
272
asserts .assert_equal (heatDemand , 0 )
277
273
278
- self .step ("10c " )
274
+ self .step ("10b " )
279
275
await self .check_whm_attribute ("BoostState" , Clusters .WaterHeaterManagement .Enums .BoostStateEnum .kInactive )
280
276
281
277
self .step ("11" )
0 commit comments