From 676bf2a549fe2414d14011b67de392b502542407 Mon Sep 17 00:00:00 2001 From: Christopher Fenner Date: Mon, 23 Dec 2024 21:59:38 +0100 Subject: [PATCH] fix test cases --- tests/test_VitoairFs300E.py | 1 + tests/test_Vitopure350.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_VitoairFs300E.py b/tests/test_VitoairFs300E.py index 5eee55f..dc72a08 100644 --- a/tests/test_VitoairFs300E.py +++ b/tests/test_VitoairFs300E.py @@ -52,6 +52,7 @@ def test_getVentilationModes(self): def test_getVentilationMode(self): self.assertEqual(False, self.device.getVentilationMode("filterChange")) + def test_ventilationQuickmode(self): self.assertEqual(self.device.getVentilationQuickmode("forcedLevelFour"), False) self.assertEqual(self.device.getVentilationQuickmode("silent"), False) diff --git a/tests/test_Vitopure350.py b/tests/test_Vitopure350.py index fabd053..4ac9e8a 100644 --- a/tests/test_Vitopure350.py +++ b/tests/test_Vitopure350.py @@ -65,13 +65,13 @@ def test_ventilationQuickmodes(self): "silent", ]) - def test_activateComfort(self): + def test_activateVentilationQuickmodeStandby(self): self.device.activateVentilationQuickmode("standby") self.assertEqual(len(self.service.setPropertyData), 1) self.assertEqual(self.service.setPropertyData[0]['action'], 'activate') self.assertEqual(self.service.setPropertyData[0]['property_name'], 'ventilation.quickmodes.standby') - def test_deactivateComfort(self): + def test_deactivateVentilationQuickmodeStandby(self): self.device.deactivateVentilationQuickmode("standby") self.assertEqual(len(self.service.setPropertyData), 1) self.assertEqual(self.service.setPropertyData[0]['action'], 'deactivate')