Fix test for Alarm Clock detection.

This commit is contained in:
jcass 2017-01-18 17:53:37 +02:00
parent e4e2db92e2
commit 1c59940075

View File

@ -20,7 +20,10 @@ class WebclientTests(unittest.TestCase):
'musicbox': False,
'websocket_host': 'host_mock',
'websocket_port': 999,
}
},
'alarmclock': {
'enabled': True,
}
})
self.ext = Extension()
@ -72,7 +75,7 @@ class WebclientTests(unittest.TestCase):
assert self.mmw.get_websocket_url(request_mock) == 'wss://127.0.0.1:999/mopidy/ws'
def test_has_alarmclock(self):
assert not self.mmw.has_alarm_clock()
assert self.mmw.has_alarm_clock()
def test_is_musicbox(self):
assert not self.mmw.is_music_box()