Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump python_roborock to 0.40.0 #112238

Merged
merged 3 commits into from Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements_all.txt
Expand Up @@ -2288,7 +2288,7 @@ python-rabbitair==0.0.8
python-ripple-api==0.0.3

# homeassistant.components.roborock
python-roborock==0.39.1
python-roborock==0.40.

# homeassistant.components.smarttub
python-smarttub==0.0.36
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Expand Up @@ -1755,7 +1755,7 @@ python-qbittorrent==0.4.3
python-rabbitair==0.0.8

# homeassistant.components.roborock
python-roborock==0.39.1
python-roborock==0.40.0

# homeassistant.components.smarttub
python-smarttub==0.0.36
Expand Down
4 changes: 4 additions & 0 deletions tests/components/roborock/snapshots/test_diagnostics.ambr
Expand Up @@ -32,6 +32,8 @@
'coordinators': dict({
'**REDACTED-0**': dict({
'api': dict({
'misc_info': dict({
}),
}),
'roborock_device_info': dict({
'device': dict({
Expand Down Expand Up @@ -309,6 +311,8 @@
}),
'**REDACTED-1**': dict({
'api': dict({
'misc_info': dict({
}),
}),
'roborock_device_info': dict({
'device': dict({
Expand Down
3 changes: 2 additions & 1 deletion tests/components/roborock/test_diagnostics.py
@@ -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

Expand All @@ -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"))