From 2a7c808d386320e0849268ce555bef15e1f3e1f2 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 17 Jan 2022 09:28:45 -0500 Subject: [PATCH] spelling: components/ecobee (#64255) Co-authored-by: Josh Soref --- homeassistant/components/ecobee/climate.py | 2 +- homeassistant/components/ecobee/humidifier.py | 2 +- tests/components/ecobee/test_humidifier.py | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/homeassistant/components/ecobee/climate.py b/homeassistant/components/ecobee/climate.py index c951a6c7333..2318b142daf 100644 --- a/homeassistant/components/ecobee/climate.py +++ b/homeassistant/components/ecobee/climate.py @@ -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. diff --git a/homeassistant/components/ecobee/humidifier.py b/homeassistant/components/ecobee/humidifier.py index e0aec907c13..f2e9fa1528c 100644 --- a/homeassistant/components/ecobee/humidifier.py +++ b/homeassistant/components/ecobee/humidifier.py @@ -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.""" diff --git a/tests/components/ecobee/test_humidifier.py b/tests/components/ecobee/test_humidifier.py index f8a83e4c905..0af5fd150e3 100644 --- a/tests/components/ecobee/test_humidifier.py +++ b/tests/components/ecobee/test_humidifier.py @@ -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)