Apparently usefixtures messes up ordering in test

This commit is contained in:
Mike Degatano 2025-07-22 20:50:58 +00:00
parent 7902aa5281
commit 363e46ab66

View File

@ -3,15 +3,12 @@
# pylint: disable=protected-access # pylint: disable=protected-access
from unittest.mock import patch from unittest.mock import patch
import pytest
from supervisor.coresys import CoreSys from supervisor.coresys import CoreSys
from tests.common import load_binary_fixture from tests.common import load_binary_fixture
@pytest.mark.usefixtures("dbus_is_connected") def test_supported_features(coresys: CoreSys, dbus_is_connected):
def test_supported_features(coresys: CoreSys):
"""Test host features.""" """Test host features."""
assert "network" in coresys.host.features assert "network" in coresys.host.features