Skip to content

Commit 02046fc

Browse files
authored
Fix advantage_air CI failure (#129735)
1 parent fbe2774 commit 02046fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/components/advantage_air/test_binary_sensor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ async def test_binary_sensor_async_setup_entry(
8585
dt_util.utcnow() + timedelta(seconds=RELOAD_AFTER_UPDATE_DELAY + 1),
8686
)
8787
await hass.async_block_till_done(wait_background_tasks=True)
88-
assert len(mock_get.mock_calls) == 2
88+
assert len(mock_get.mock_calls) == 3
8989

9090
state = hass.states.get(entity_id)
9191
assert state
@@ -116,7 +116,7 @@ async def test_binary_sensor_async_setup_entry(
116116
dt_util.utcnow() + timedelta(seconds=RELOAD_AFTER_UPDATE_DELAY + 1),
117117
)
118118
await hass.async_block_till_done(wait_background_tasks=True)
119-
assert len(mock_get.mock_calls) == 2
119+
assert len(mock_get.mock_calls) == 3
120120

121121
state = hass.states.get(entity_id)
122122
assert state

tests/components/advantage_air/test_sensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ async def test_sensor_platform_disabled_entity(
140140
dt_util.utcnow() + timedelta(seconds=RELOAD_AFTER_UPDATE_DELAY + 1),
141141
)
142142
await hass.async_block_till_done(wait_background_tasks=True)
143-
assert len(mock_get.mock_calls) == 2
143+
assert len(mock_get.mock_calls) == 3
144144

145145
state = hass.states.get(entity_id)
146146
assert state

0 commit comments

Comments
 (0)