We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c3af52 commit 4162238Copy full SHA for 4162238
src/python_testing/TC_EWATERHTR_2_1.py
@@ -112,7 +112,9 @@ async def test_TC_EWATERHTR_2_1(self):
112
logging.info("Skipping step 6 as PIXIT.EWATERHTR.TP not supported")
113
114
self.step("7")
115
- await self.check_whm_attribute("BoostState", Clusters.WaterHeaterManagement.Enums.BoostStateEnum.kInactive)
+ boost_state = await self.read_whm_attribute_expect_success(attribute="BoostState")
116
+ asserts.assert_less_equal(boost_state, Clusters.WaterHeaterManagement.Enums.BoostStateEnum.kInactive,
117
+ f"Unexpected BoostState value - expected {boost_state} should be BoostStateEnum (enum8) value in range 0x00 to 0x01")
118
119
120
if __name__ == "__main__":
0 commit comments