From 8eb9361f78b123a8525f2da9768c2caec9d33d06 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 13 Feb 2018 09:41:42 -0800 Subject: [PATCH] Remove usage of deprecated assert method --- tests/components/climate/test_melissa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/climate/test_melissa.py b/tests/components/climate/test_melissa.py index f8a044c2f4b9f7..446eec9aba1eb0 100644 --- a/tests/components/climate/test_melissa.py +++ b/tests/components/climate/test_melissa.py @@ -202,7 +202,7 @@ def test_send(self): self.thermostat._cur_settings = None self.assertFalse(self.thermostat.send({ 'fan': self.api.FAN_LOW})) - self.assertNotEquals(SPEED_LOW, self.thermostat.current_fan_mode) + self.assertNotEqual(SPEED_LOW, self.thermostat.current_fan_mode) self.assertIsNone(self.thermostat._cur_settings) @mock.patch('homeassistant.components.climate.melissa._LOGGER.warning')