From 363e46ab669ad9051fc2f29a91db077eb8e6c9dc Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Tue, 22 Jul 2025 20:50:58 +0000 Subject: [PATCH] Apparently usefixtures messes up ordering in test --- tests/host/test_supported_features.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/host/test_supported_features.py b/tests/host/test_supported_features.py index 5ecc92db7..f4706b42e 100644 --- a/tests/host/test_supported_features.py +++ b/tests/host/test_supported_features.py @@ -3,15 +3,12 @@ # pylint: disable=protected-access from unittest.mock import patch -import pytest - from supervisor.coresys import CoreSys from tests.common import load_binary_fixture -@pytest.mark.usefixtures("dbus_is_connected") -def test_supported_features(coresys: CoreSys): +def test_supported_features(coresys: CoreSys, dbus_is_connected): """Test host features.""" assert "network" in coresys.host.features