Bump python-roborock to 0.34.6 (#101147)

This commit is contained in:
Luke Lashley 2023-10-02 14:11:16 -04:00 committed by GitHub
parent 6fa3078cfc
commit e4cb19f20d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 6 deletions

View File

@ -6,5 +6,5 @@
"documentation": "https://www.home-assistant.io/integrations/roborock", "documentation": "https://www.home-assistant.io/integrations/roborock",
"iot_class": "local_polling", "iot_class": "local_polling",
"loggers": ["roborock"], "loggers": ["roborock"],
"requirements": ["python-roborock==0.34.1"] "requirements": ["python-roborock==0.34.6"]
} }

View File

@ -176,7 +176,8 @@
"moderate": "Moderate", "moderate": "Moderate",
"high": "High", "high": "High",
"intense": "Intense", "intense": "Intense",
"custom": "[%key:component::roborock::entity::select::mop_mode::state::custom%]" "custom": "[%key:component::roborock::entity::select::mop_mode::state::custom%]",
"custom_water_flow": "Custom water flow"
} }
} }
}, },

View File

@ -2174,7 +2174,7 @@ python-qbittorrent==0.4.3
python-ripple-api==0.0.3 python-ripple-api==0.0.3
# homeassistant.components.roborock # homeassistant.components.roborock
python-roborock==0.34.1 python-roborock==0.34.6
# homeassistant.components.smarttub # homeassistant.components.smarttub
python-smarttub==0.0.33 python-smarttub==0.0.33

View File

@ -1618,7 +1618,7 @@ python-picnic-api==1.1.0
python-qbittorrent==0.4.3 python-qbittorrent==0.4.3
# homeassistant.components.roborock # homeassistant.components.roborock
python-roborock==0.34.1 python-roborock==0.34.6
# homeassistant.components.smarttub # homeassistant.components.smarttub
python-smarttub==0.0.33 python-smarttub==0.0.33

View File

@ -27,7 +27,7 @@ async def test_update_success(
# Ensure that the entity exist, as these test can pass even if there is no entity. # Ensure that the entity exist, as these test can pass even if there is no entity.
assert hass.states.get(entity_id) is not None assert hass.states.get(entity_id) is not None
with patch( with patch(
"homeassistant.components.roborock.coordinator.RoborockLocalClient.send_message" "homeassistant.components.roborock.coordinator.RoborockLocalClient._send_command"
) as mock_send_message: ) as mock_send_message:
await hass.services.async_call( await hass.services.async_call(
"switch", "switch",

View File

@ -27,7 +27,7 @@ async def test_update_success(
# Ensure that the entity exist, as these test can pass even if there is no entity. # Ensure that the entity exist, as these test can pass even if there is no entity.
assert hass.states.get(entity_id) is not None assert hass.states.get(entity_id) is not None
with patch( with patch(
"homeassistant.components.roborock.coordinator.RoborockLocalClient.send_message" "homeassistant.components.roborock.coordinator.RoborockLocalClient._send_command"
) as mock_send_message: ) as mock_send_message:
await hass.services.async_call( await hass.services.async_call(
"time", "time",