spelling: components/airly (#64266)

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>

Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
pull/64340/head
Josh Soref 2022-01-17 22:22:11 -05:00 committed by GitHub
parent 24c07ccf15
commit eda806ca12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -95,10 +95,10 @@ async def test_config_with_turned_off_station(hass, aioclient_mock):
async def test_update_interval(hass, aioclient_mock):
"""Test correct update interval when the number of configured instances changes."""
REMAINING_RQUESTS = 15
REMAINING_REQUESTS = 15
HEADERS = {
"X-RateLimit-Limit-day": "100",
"X-RateLimit-Remaining-day": str(REMAINING_RQUESTS),
"X-RateLimit-Remaining-day": str(REMAINING_REQUESTS),
}
entry = MockConfigEntry(
@ -127,7 +127,7 @@ async def test_update_interval(hass, aioclient_mock):
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
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
with patch("homeassistant.util.dt.utcnow") as mock_utcnow:
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 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
mock_utcnow.return_value = future
async_fire_time_changed(hass, future)

View File

@ -158,7 +158,7 @@ async def test_availability(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)
call_count = aioclient_mock.call_count