spelling: components/airly (#64266)
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
parent
24c07ccf15
commit
eda806ca12
2 changed files with 5 additions and 5 deletions
|
@ -95,10 +95,10 @@ async def test_config_with_turned_off_station(hass, aioclient_mock):
|
||||||
|
|
||||||
async def test_update_interval(hass, aioclient_mock):
|
async def test_update_interval(hass, aioclient_mock):
|
||||||
"""Test correct update interval when the number of configured instances changes."""
|
"""Test correct update interval when the number of configured instances changes."""
|
||||||
REMAINING_RQUESTS = 15
|
REMAINING_REQUESTS = 15
|
||||||
HEADERS = {
|
HEADERS = {
|
||||||
"X-RateLimit-Limit-day": "100",
|
"X-RateLimit-Limit-day": "100",
|
||||||
"X-RateLimit-Remaining-day": str(REMAINING_RQUESTS),
|
"X-RateLimit-Remaining-day": str(REMAINING_REQUESTS),
|
||||||
}
|
}
|
||||||
|
|
||||||
entry = MockConfigEntry(
|
entry = MockConfigEntry(
|
||||||
|
@ -127,7 +127,7 @@ async def test_update_interval(hass, aioclient_mock):
|
||||||
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
|
||||||
assert entry.state is ConfigEntryState.LOADED
|
assert entry.state is ConfigEntryState.LOADED
|
||||||
|
|
||||||
update_interval = set_update_interval(instances, REMAINING_RQUESTS)
|
update_interval = set_update_interval(instances, REMAINING_REQUESTS)
|
||||||
future = utcnow() + update_interval
|
future = utcnow() + update_interval
|
||||||
with patch("homeassistant.util.dt.utcnow") as mock_utcnow:
|
with patch("homeassistant.util.dt.utcnow") as mock_utcnow:
|
||||||
mock_utcnow.return_value = future
|
mock_utcnow.return_value = future
|
||||||
|
@ -164,7 +164,7 @@ async def test_update_interval(hass, aioclient_mock):
|
||||||
assert len(hass.config_entries.async_entries(DOMAIN)) == 2
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 2
|
||||||
assert entry.state is ConfigEntryState.LOADED
|
assert entry.state is ConfigEntryState.LOADED
|
||||||
|
|
||||||
update_interval = set_update_interval(instances, REMAINING_RQUESTS)
|
update_interval = set_update_interval(instances, REMAINING_REQUESTS)
|
||||||
future = utcnow() + update_interval
|
future = utcnow() + update_interval
|
||||||
mock_utcnow.return_value = future
|
mock_utcnow.return_value = future
|
||||||
async_fire_time_changed(hass, future)
|
async_fire_time_changed(hass, future)
|
||||||
|
|
|
@ -158,7 +158,7 @@ async def test_availability(hass, aioclient_mock):
|
||||||
|
|
||||||
|
|
||||||
async def test_manual_update_entity(hass, aioclient_mock):
|
async def test_manual_update_entity(hass, aioclient_mock):
|
||||||
"""Test manual update entity via service homeasasistant/update_entity."""
|
"""Test manual update entity via service homeassistant/update_entity."""
|
||||||
await init_integration(hass, aioclient_mock)
|
await init_integration(hass, aioclient_mock)
|
||||||
|
|
||||||
call_count = aioclient_mock.call_count
|
call_count = aioclient_mock.call_count
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue