home-assistant: regenerate component packages

This commit is contained in:
Martin Weinelt 2020-08-08 22:30:54 +02:00 committed by Jon
parent 069d28d326
commit b01106127c
2 changed files with 14 additions and 1 deletions

View File

@ -861,7 +861,7 @@
"uscis" = ps: with ps; [ ]; # missing inputs: uscisstatus
"usgs_earthquakes_feed" = ps: with ps; [ ]; # missing inputs: geojson_client
"utility_meter" = ps: with ps; [ ];
"uvc" = ps: with ps; [ ]; # missing inputs: uvcclient
"uvc" = ps: with ps; [ uvcclient];
"vacuum" = ps: with ps; [ ];
"vallox" = ps: with ps; [ ]; # missing inputs: vallox-websocket-api
"vasttrafik" = ps: with ps; [ ]; # missing inputs: vtjp

View File

@ -0,0 +1,13 @@
diff --git a/tests/test_core.py b/tests/test_core.py
index a63f42af61..04b333868b 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -1432,7 +1432,7 @@ async def test_chained_logging_hits_log_timeout(hass, caplog):
async def _task_chain_2():
nonlocal created
created += 1
- if created > 10:
+ if created > 1000:
return
hass.async_create_task(_task_chain_1())