Update hassbian component with real output (#5989)

This commit is contained in:
Paulus Schoutsen 2017-02-14 09:34:17 -08:00 committed by GitHub
parent 4b8e6e36b6
commit 409b74b780
2 changed files with 18 additions and 44 deletions

View file

@ -51,8 +51,9 @@ def test_get_suites(hass, test_client):
assert 'mosquitto' in result
info = result['mosquitto']
assert info['state'] == 'installing'
assert info['description'] == 'Mosquitto is an MQTT broker.'
assert info['state'] == 'failed'
assert info['description'] == \
'Installs the Mosquitto package for setting up a local MQTT server'
@asyncio.coroutine