home-assistant: regenerate component packages
This commit is contained in:
parent
069d28d326
commit
b01106127c
|
@ -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
|
||||
|
|
|
@ -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())
|
||||
|
Loading…
Reference in New Issue