1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

First pass fixing tests that raise exceptions caught by asyncio.gather (#25860)

* First pass fixing tests that raise exceptions caught by asyncio.gather

* Fix demo test

* lint
This commit is contained in:
Paulus Schoutsen
2019-08-12 07:42:12 -07:00
committed by Pascal Vizeli
parent 76f2e6015f
commit 6f357cb23e
18 changed files with 79 additions and 14 deletions

View File

@@ -158,6 +158,7 @@ async def test_add_new_sensor(hass):
sensor = Mock()
sensor.name = "name"
sensor.type = "ZHATemperature"
sensor.uniqueid = "1"
sensor.BINARY = False
sensor.register_async_callback = Mock()
async_dispatcher_send(hass, gateway.async_event_new_device("sensor"), [sensor])