Bump aioautomower to 2025.3.2 (#141211)

* Bump aioautomower to 2025.3.2

* requirements

* adjust test
This commit is contained in:
Thomas55555 2025-03-23 22:19:16 +01:00 committed by GitHub
parent 93010ab5c9
commit b171439098
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View File

@ -8,5 +8,5 @@
"iot_class": "cloud_push",
"loggers": ["aioautomower"],
"quality_scale": "silver",
"requirements": ["aioautomower==2025.3.1"]
"requirements": ["aioautomower==2025.3.2"]
}

View File

@ -44,7 +44,7 @@ async def async_set_work_area_cutting_height(
) -> None:
"""Set cutting height for work area."""
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
View File

@ -201,7 +201,7 @@ aioaseko==1.0.0
aioasuswrt==1.4.0
# homeassistant.components.husqvarna_automower
aioautomower==2025.3.1
aioautomower==2025.3.2
# homeassistant.components.azure_devops
aioazuredevops==2.2.1

View File

@ -189,7 +189,7 @@ aioaseko==1.0.0
aioasuswrt==1.4.0
# homeassistant.components.husqvarna_automower
aioautomower==2025.3.1
aioautomower==2025.3.2
# homeassistant.components.azure_devops
aioazuredevops==2.2.1

View File

@ -79,7 +79,7 @@ async def test_number_workarea_commands(
freezer.tick(timedelta(seconds=EXECUTION_TIME_DELAY))
async_fire_time_changed(hass)
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)
assert state.state is not None
assert state.state == "75"