aboutsummaryrefslogtreecommitdiff
path: root/tests/test_backend_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_backend_config.py')
-rw-r--r--tests/test_backend_config.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_backend_config.py b/tests/test_backend_config.py
index 700534f..bdea03e 100644
--- a/tests/test_backend_config.py
+++ b/tests/test_backend_config.py
@@ -20,7 +20,10 @@ def test_system() -> None:
def test_backend_config() -> None:
"""Test the class 'BackendConfiguration'."""
cfg = BackendConfiguration(
- [AdviceCategory.COMPATIBILITY], [System.CURRENT], BackendType.CUSTOM
+ [AdviceCategory.COMPATIBILITY],
+ [System.CURRENT],
+ BackendType.CUSTOM,
+ None,
)
assert cfg.supported_advice == [AdviceCategory.COMPATIBILITY]
assert cfg.supported_systems == [System.CURRENT]