nixos/tests/home-assistant: Drop esphome, fix post-restart expectation
Mentioning esphome in the config is now causing an error. Check for the backup module post-restart, not esphome.
This commit is contained in:
parent
b57f066dea
commit
4540dad9e7
1 changed files with 1 additions and 2 deletions
|
@ -62,7 +62,6 @@ in {
|
|||
frontend = {};
|
||||
|
||||
# include some popular integrations, that absolutely shouldn't break
|
||||
esphome = {};
|
||||
knx = {};
|
||||
shelly = {};
|
||||
zha = {};
|
||||
|
@ -198,7 +197,7 @@ in {
|
|||
|
||||
with subtest("Check that new components get setup after restart"):
|
||||
journal = get_journal_since(cursor)
|
||||
for domain in ["esphome"]:
|
||||
for domain in ["backup"]:
|
||||
assert f"Setup of domain {domain} took" in journal, f"{domain} setup missing"
|
||||
|
||||
with subtest("Check that no errors were logged"):
|
||||
|
|
Loading…
Reference in a new issue