Skip to content

Commit

Permalink
adjust test case
Browse files Browse the repository at this point in the history
  • Loading branch information
CFenner committed Dec 26, 2024
1 parent 9755cce commit 279ce64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_Vitopure350.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ def test_getVentilationModes(self):
def test_getVentilationMode(self):
self.assertEqual(False, self.device.getVentilationMode("filterChange"))

def test_getVentilationModePermanentLevel(self):
def test_getVentilationLevels(self):
expected_levels = ['levelOne', 'levelTwo', 'levelThree', 'levelFour']
self.assertListEqual(expected_levels, self.device.getVentilationModePermanentLevels())
self.assertListEqual(expected_levels, self.device.getVentilationLevels())

def test_ventilationState(self):
self.assertEqual(self.device.getVentilationDemand(), "unknown")
Expand Down

0 comments on commit 279ce64

Please sign in to comment.