1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-04-17 23:33:35 +01:00

Fix pytests

This commit is contained in:
Stefan Agner
2026-03-16 16:24:46 +01:00
parent def618bccf
commit 1615b50e6b
3 changed files with 7 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ from dataclasses import dataclass, replace
from dbus_fast import DBusError, ErrorType, Variant
import pytest
from supervisor.const import CoreState
from supervisor.coresys import CoreSys
from supervisor.resolution.const import ContextType, IssueType, SuggestionType
from supervisor.resolution.data import Issue, Suggestion
@@ -98,6 +99,7 @@ async def test_fixup(
["/org/freedesktop/UDisks2/block_devices/mmcblk1p3"],
]
await coresys.core.set_state(CoreState.RUNNING)
await system_adopt_data_disk()
assert mmcblk1p3_filesystem_service.SetLabel.calls == [
@@ -176,6 +178,7 @@ async def test_fixup_reboot_failed(
["/org/freedesktop/UDisks2/block_devices/mmcblk1p3"],
]
await coresys.core.set_state(CoreState.RUNNING)
await system_adopt_data_disk()
assert mmcblk1p3_filesystem_service.SetLabel.calls == [
@@ -228,6 +231,7 @@ async def test_fixup_disabled_data_disk(
["/org/freedesktop/UDisks2/block_devices/mmcblk1p3"],
]
await coresys.core.set_state(CoreState.RUNNING)
await system_adopt_data_disk()
assert mmcblk1p3_filesystem_service.SetLabel.calls == [