Skip to content

Commit

Permalink
Update src/python_testing/TC_DISHM_3_1.py
Browse files Browse the repository at this point in the history
Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
  • Loading branch information
abpoth and bzbarsky-apple authored Aug 15, 2023
1 parent af92128 commit d7542b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_testing/TC_DISHM_3_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit d7542b1

Please sign in to comment.