Validation tests ok

This commit is contained in:
Jean-Marc Collin
2024-03-09 15:06:58 +00:00
parent d8bc2fc3d3
commit 744bfdb9fe
4 changed files with 13 additions and 11 deletions

View File

@@ -869,7 +869,7 @@ async def test_change_central_config_temperature(
assert temp_entity
assert temp_entity.value == 19.1
temp_entity.set_native_value(20.3)
await temp_entity.async_set_native_value(20.3)
assert temp_entity
assert temp_entity.value == 20.3
# Wait for async job to complete
@@ -985,7 +985,7 @@ async def test_change_vtherm_temperature(
assert temp_entity
assert temp_entity.value == 19.1
temp_entity.set_native_value(20.3)
await temp_entity.async_set_native_value(20.3)
assert temp_entity
assert temp_entity.value == 20.3
# Wait for async job to complete
@@ -1106,7 +1106,7 @@ async def test_change_vtherm_temperature_with_presence(
assert temp_entity
assert temp_entity.value == 30
temp_entity.set_native_value(20.3)
await temp_entity.async_set_native_value(20.3)
assert temp_entity
assert temp_entity.value == 20.3
# Wait for async job to complete
@@ -1131,7 +1131,7 @@ async def test_change_vtherm_temperature_with_presence(
assert temp_entity
assert temp_entity.value == 30
temp_entity.set_native_value(20.3)
await temp_entity.async_set_native_value(20.3)
assert temp_entity
assert temp_entity.value == 20.3
# Wait for async job to complete