Skip to content

Commit bc9d35b

Browse files
authored
Bump deebot-client to 16.2.0 (#155642)
1 parent 4dfb6e4 commit bc9d35b

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

homeassistant/components/ecovacs/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"integration_type": "hub",
88
"iot_class": "cloud_push",
99
"loggers": ["sleekxmppfs", "sucks", "deebot_client"],
10-
"requirements": ["py-sucks==0.9.11", "deebot-client==16.1.0"]
10+
"requirements": ["py-sucks==0.9.11", "deebot-client==16.2.0"]
1111
}

requirements_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements_test_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/components/ecovacs/test_select.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from deebot_client.events.map import CachedMapInfoEvent, MajorMapEvent, Map
77
from deebot_client.events.water_info import WaterAmount, WaterAmountEvent
88
from deebot_client.events.work_mode import WorkMode, WorkModeEvent
9+
from deebot_client.rs.map import RotationAngle # pylint: disable=no-name-in-module
910
import pytest
1011
from syrupy.assertion import SnapshotAssertion
1112

@@ -40,8 +41,16 @@ async def notify_events(hass: HomeAssistant, event_bus: EventBus):
4041
event_bus.notify(
4142
CachedMapInfoEvent(
4243
{
43-
Map(id="1", name="", using=False, built=False),
44-
Map(id="2", name="Map 2", using=True, built=True),
44+
Map(
45+
id="1", name="", using=False, built=False, angle=RotationAngle.DEG_0
46+
),
47+
Map(
48+
id="2",
49+
name="Map 2",
50+
using=True,
51+
built=True,
52+
angle=RotationAngle.DEG_0,
53+
),
4554
}
4655
)
4756
)

0 commit comments

Comments
 (0)