We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8c488 commit 7ade4dbCopy full SHA for 7ade4db
1 file changed
tests/test_fan.py
@@ -547,7 +547,10 @@ async def test_standing_fan_set_vertical_oscillation_angle_90():
547
standing_fan = create_standing_fan_for_testing()
548
await standing_fan.set_vertical_oscillation_angle(90)
549
cmd = standing_fan._send_command.call_args[0][0]
550
- assert cmd == f"{fan.COMMAND_SET_OSCILLATION_PARAMS}FFFF{VerticalOscillationAngle.ANGLE_90.value:02X}FF"
+ assert (
551
+ cmd
552
+ == f"{fan.COMMAND_SET_OSCILLATION_PARAMS}FFFF{VerticalOscillationAngle.ANGLE_90.value:02X}FF"
553
+ )
554
555
556
@pytest.mark.asyncio
0 commit comments