Bump python_roborock to 0.40.0 (#112238)
* bump to python_roborock 0.40.0 * manifest went away in merge?
This commit is contained in:
parent
f7acb7c91b
commit
59df20f1d4
5 changed files with 9 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
"iot_class": "local_polling",
|
||||
"loggers": ["roborock"],
|
||||
"requirements": [
|
||||
"python-roborock==0.39.2",
|
||||
"python-roborock==0.40.0",
|
||||
"vacuum-map-parser-roborock==0.1.1"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -2282,7 +2282,7 @@ python-rabbitair==0.0.8
|
|||
python-ripple-api==0.0.3
|
||||
|
||||
# homeassistant.components.roborock
|
||||
python-roborock==0.39.2
|
||||
python-roborock==0.40.0
|
||||
|
||||
# homeassistant.components.smarttub
|
||||
python-smarttub==0.0.36
|
||||
|
|
|
@ -1755,7 +1755,7 @@ python-qbittorrent==0.4.3
|
|||
python-rabbitair==0.0.8
|
||||
|
||||
# homeassistant.components.roborock
|
||||
python-roborock==0.39.2
|
||||
python-roborock==0.40.0
|
||||
|
||||
# homeassistant.components.smarttub
|
||||
python-smarttub==0.0.36
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
'coordinators': dict({
|
||||
'**REDACTED-0**': dict({
|
||||
'api': dict({
|
||||
'misc_info': dict({
|
||||
}),
|
||||
}),
|
||||
'roborock_device_info': dict({
|
||||
'device': dict({
|
||||
|
@ -309,6 +311,8 @@
|
|||
}),
|
||||
'**REDACTED-1**': dict({
|
||||
'api': dict({
|
||||
'misc_info': dict({
|
||||
}),
|
||||
}),
|
||||
'roborock_device_info': dict({
|
||||
'device': dict({
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
"""Tests for the diagnostics data provided by the Roborock integration."""
|
||||
|
||||
from syrupy.assertion import SnapshotAssertion
|
||||
from syrupy.filters import props
|
||||
|
||||
from homeassistant.core import HomeAssistant
|
||||
|
||||
|
@ -20,4 +21,4 @@ async def test_diagnostics(
|
|||
result = await get_diagnostics_for_config_entry(hass, hass_client, setup_entry)
|
||||
|
||||
assert isinstance(result, dict)
|
||||
assert result == snapshot
|
||||
assert result == snapshot(exclude=props("Nonce"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue