mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 20:57:21 +00:00
Bump aioautomower to 2025.3.2 (#141211)
* Bump aioautomower to 2025.3.2 * requirements * adjust test
This commit is contained in:
parent
93010ab5c9
commit
b171439098
@ -8,5 +8,5 @@
|
|||||||
"iot_class": "cloud_push",
|
"iot_class": "cloud_push",
|
||||||
"loggers": ["aioautomower"],
|
"loggers": ["aioautomower"],
|
||||||
"quality_scale": "silver",
|
"quality_scale": "silver",
|
||||||
"requirements": ["aioautomower==2025.3.1"]
|
"requirements": ["aioautomower==2025.3.2"]
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ async def async_set_work_area_cutting_height(
|
|||||||
) -> None:
|
) -> None:
|
||||||
"""Set cutting height for work area."""
|
"""Set cutting height for work area."""
|
||||||
await coordinator.api.commands.workarea_settings(
|
await coordinator.api.commands.workarea_settings(
|
||||||
mower_id, int(cheight), work_area_id
|
mower_id, work_area_id, cutting_height=int(cheight)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
2
requirements_all.txt
generated
2
requirements_all.txt
generated
@ -201,7 +201,7 @@ aioaseko==1.0.0
|
|||||||
aioasuswrt==1.4.0
|
aioasuswrt==1.4.0
|
||||||
|
|
||||||
# homeassistant.components.husqvarna_automower
|
# homeassistant.components.husqvarna_automower
|
||||||
aioautomower==2025.3.1
|
aioautomower==2025.3.2
|
||||||
|
|
||||||
# homeassistant.components.azure_devops
|
# homeassistant.components.azure_devops
|
||||||
aioazuredevops==2.2.1
|
aioazuredevops==2.2.1
|
||||||
|
2
requirements_test_all.txt
generated
2
requirements_test_all.txt
generated
@ -189,7 +189,7 @@ aioaseko==1.0.0
|
|||||||
aioasuswrt==1.4.0
|
aioasuswrt==1.4.0
|
||||||
|
|
||||||
# homeassistant.components.husqvarna_automower
|
# homeassistant.components.husqvarna_automower
|
||||||
aioautomower==2025.3.1
|
aioautomower==2025.3.2
|
||||||
|
|
||||||
# homeassistant.components.azure_devops
|
# homeassistant.components.azure_devops
|
||||||
aioazuredevops==2.2.1
|
aioazuredevops==2.2.1
|
||||||
|
@ -79,7 +79,7 @@ async def test_number_workarea_commands(
|
|||||||
freezer.tick(timedelta(seconds=EXECUTION_TIME_DELAY))
|
freezer.tick(timedelta(seconds=EXECUTION_TIME_DELAY))
|
||||||
async_fire_time_changed(hass)
|
async_fire_time_changed(hass)
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
mocked_method.assert_called_once_with(TEST_MOWER_ID, 75, 123456)
|
mocked_method.assert_called_once_with(TEST_MOWER_ID, 123456, cutting_height=75)
|
||||||
state = hass.states.get(entity_id)
|
state = hass.states.get(entity_id)
|
||||||
assert state.state is not None
|
assert state.state is not None
|
||||||
assert state.state == "75"
|
assert state.state == "75"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user