Fix advantage_air CI failure (#129735)
parent
fbe27749a0
commit
02046fcdb4
|
@ -85,7 +85,7 @@ async def test_binary_sensor_async_setup_entry(
|
|||
dt_util.utcnow() + timedelta(seconds=RELOAD_AFTER_UPDATE_DELAY + 1),
|
||||
)
|
||||
await hass.async_block_till_done(wait_background_tasks=True)
|
||||
assert len(mock_get.mock_calls) == 2
|
||||
assert len(mock_get.mock_calls) == 3
|
||||
|
||||
state = hass.states.get(entity_id)
|
||||
assert state
|
||||
|
@ -116,7 +116,7 @@ async def test_binary_sensor_async_setup_entry(
|
|||
dt_util.utcnow() + timedelta(seconds=RELOAD_AFTER_UPDATE_DELAY + 1),
|
||||
)
|
||||
await hass.async_block_till_done(wait_background_tasks=True)
|
||||
assert len(mock_get.mock_calls) == 2
|
||||
assert len(mock_get.mock_calls) == 3
|
||||
|
||||
state = hass.states.get(entity_id)
|
||||
assert state
|
||||
|
|
|
@ -140,7 +140,7 @@ async def test_sensor_platform_disabled_entity(
|
|||
dt_util.utcnow() + timedelta(seconds=RELOAD_AFTER_UPDATE_DELAY + 1),
|
||||
)
|
||||
await hass.async_block_till_done(wait_background_tasks=True)
|
||||
assert len(mock_get.mock_calls) == 2
|
||||
assert len(mock_get.mock_calls) == 3
|
||||
|
||||
state = hass.states.get(entity_id)
|
||||
assert state
|
||||
|
|
Loading…
Reference in New Issue