1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-23 12:29:55 +00:00

Upgrade restrictedpython to 4.0b2 (#10179)

* Upgrade restrictedpython to 4.0b2

* Update test
This commit is contained in:
Fabian Affolter
2017-10-30 08:02:15 +01:00
committed by Paulus Schoutsen
parent fc44a4ed99
commit 2891b0cb2e
4 changed files with 31 additions and 22 deletions

View File

@@ -47,7 +47,8 @@ def test_setup_fails_on_no_dir(hass, caplog):
res = yield from async_setup_component(hass, 'python_script', {})
assert not res
assert 'Folder python_scripts not found in config folder' in caplog.text
assert 'Folder python_scripts not found in configuration folder' in \
caplog.text
@asyncio.coroutine