diff --git a/src/python_testing/TC_DISHM_3_1.py b/src/python_testing/TC_DISHM_3_1.py index 57d47415b79ee1..895125ba74c1ef 100644 --- a/src/python_testing/TC_DISHM_3_1.py +++ b/src/python_testing/TC_DISHM_3_1.py @@ -50,7 +50,7 @@ async def send_on_command(self) -> Clusters.Objects.OnOff.Commands.On: asserts.assert_true(type_matches(ret, Clusters.Objects.OnOff.Commands.On), "Unexpected return type for OnOff") - async def write_onoff_off_mode(self) -> Clusters.Objects.OnOff.Commands.Off: + async def send_off_command(self) -> Clusters.Objects.OnOff.Commands.Off: ret = await self.send_single_cmd(cmd=Clusters.Objects.OnOff.Commands.Off, endpoint=self.endpoint) asserts.assert_true(type_matches(ret, Clusters.Objects.OnOff.Commands.Off), "Unexpected return type for OnOff")