aboutsummaryrefslogtreecommitdiff
path: root/tests/test_core_mixins.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_core_mixins.py')
-rw-r--r--tests/test_core_mixins.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_core_mixins.py b/tests/test_core_mixins.py
index 3834fb3..47ed815 100644
--- a/tests/test_core_mixins.py
+++ b/tests/test_core_mixins.py
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""Tests for the module mixins."""
import pytest
@@ -36,7 +36,7 @@ class TestParameterResolverMixin:
self.context = sample_context
self.context.update(
- advice_category=AdviceCategory.OPERATORS,
+ advice_category={AdviceCategory.COMPATIBILITY},
event_handlers=[],
config_parameters={"section": {"param": 123}},
)
@@ -83,7 +83,7 @@ class TestParameterResolverMixin:
"""Init sample object."""
self.context = sample_context
self.context.update(
- advice_category=AdviceCategory.OPERATORS,
+ advice_category={AdviceCategory.COMPATIBILITY},
event_handlers=[],
config_parameters={"section": ["param"]},
)