Skip to content

Commit 4244c8d

Browse files
committed
Fix for mypy
1 parent dc680ca commit 4244c8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_litterrobot4.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,8 @@ async def test_litter_robot_4_cleaning(mock_account: Account) -> None:
353353

354354
# simulate update to cleaning
355355
robot._update_data({"robotStatus": "ROBOT_CLEAN"}, partial=True)
356-
assert robot.status == LitterBoxStatus.CLEAN_CYCLE
356+
status = LitterBoxStatus.CLEAN_CYCLE
357+
assert robot.status == status
357358
assert robot.status_code == "CCP"
358359
assert robot.litter_level == 40
359360

0 commit comments

Comments
 (0)