spelling: components/ecobee (#64255)

Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2022-01-17 09:28:45 -05:00 committed by GitHub
parent 3f43df1348
commit 2a7c808d38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -521,7 +521,7 @@ class Thermostat(ClimateEntity):
"""Return current HVAC action.
Ecobee returns a CSV string with different equipment that is active.
We are prioritizing any heating/cooling equipment, otherwase look at
We are prioritizing any heating/cooling equipment, otherwise look at
drying/fanning. Idle if nothing going on.
We are unable to map all actions to HA equivalents.

View file

@ -40,7 +40,7 @@ async def async_setup_entry(
class EcobeeHumidifier(HumidifierEntity):
"""A humidifier class for an ecobee thermostat with humidifer attached."""
"""A humidifier class for an ecobee thermostat with humidifier attached."""
def __init__(self, data, thermostat_index):
"""Initialize ecobee humidifier platform."""

View file

@ -55,7 +55,7 @@ async def test_attributes(hass):
async def test_turn_on(hass):
"""Test the humidifer can be turned on."""
"""Test the humidifier can be turned on."""
with patch("pyecobee.Ecobee.set_humidifier_mode") as mock_turn_on:
await setup_platform(hass, HUMIDIFIER_DOMAIN)
@ -70,7 +70,7 @@ async def test_turn_on(hass):
async def test_turn_off(hass):
"""Test the humidifer can be turned off."""
"""Test the humidifier can be turned off."""
with patch("pyecobee.Ecobee.set_humidifier_mode") as mock_turn_off:
await setup_platform(hass, HUMIDIFIER_DOMAIN)
@ -85,7 +85,7 @@ async def test_turn_off(hass):
async def test_set_mode(hass):
"""Test the humidifer can change modes."""
"""Test the humidifier can change modes."""
with patch("pyecobee.Ecobee.set_humidifier_mode") as mock_set_mode:
await setup_platform(hass, HUMIDIFIER_DOMAIN)
@ -117,7 +117,7 @@ async def test_set_mode(hass):
async def test_set_humidity(hass):
"""Test the humidifer can set humidity level."""
"""Test the humidifier can set humidity level."""
with patch("pyecobee.Ecobee.set_humidity") as mock_set_humidity:
await setup_platform(hass, HUMIDIFIER_DOMAIN)