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

Google Assistant Local SDK (#27428)

* Local Google

* Fix test

* Fix tests
This commit is contained in:
Paulus Schoutsen
2019-10-13 14:16:27 -07:00
committed by GitHub
parent 3454b6fa87
commit e866d769e8
17 changed files with 512 additions and 52 deletions

View File

@@ -48,11 +48,11 @@ _LOGGER = logging.getLogger(__name__)
REQ_ID = "ff36a3cc-ec34-11e6-b1a0-64510650abcf"
BASIC_DATA = helpers.RequestData(BASIC_CONFIG, "test-agent", REQ_ID)
BASIC_DATA = helpers.RequestData(BASIC_CONFIG, "test-agent", REQ_ID, None)
PIN_CONFIG = MockConfig(secure_devices_pin="1234")
PIN_DATA = helpers.RequestData(PIN_CONFIG, "test-agent", REQ_ID)
PIN_DATA = helpers.RequestData(PIN_CONFIG, "test-agent", REQ_ID, None)
async def test_brightness_light(hass):