Skip to content

Commit

Permalink
scripts updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Thirsrin committed Aug 20, 2024
1 parent bf43b16 commit 66dc5dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python_testing/TC_CC_2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@ async def test_TC_CC_2_2(self):

self.step(6)
if supports_hs:
cmd = cc.Commands.MoveHue(moveMode=cc.Enums.HueMoveMode.kDown, rate=225)
cmd = cc.Commands.MoveHue(moveMode=cc.Enums.MoveModeEnum.kDown, rate=225)
await self.send_single_cmd(cmd)
else:
self.mark_current_step_skipped()

self.step(7)
if supports_hs:
cmd = cc.Commands.MoveSaturation(moveMode=cc.Enums.SaturationMoveMode.kDown, rate=225)
cmd = cc.Commands.MoveSaturation(moveMode=cc.Enums.MoveModeEnum.kDown, rate=225)
await self.send_single_cmd(cmd)
else:
self.mark_current_step_skipped()
Expand Down

0 comments on commit 66dc5dc

Please sign in to comment.