aboutsummaryrefslogtreecommitdiff
path: root/tests/test_target_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_target_config.py')
-rw-r--r--tests/test_target_config.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_target_config.py b/tests/test_target_config.py
index 66ebed6..48f0a58 100644
--- a/tests/test_target_config.py
+++ b/tests/test_target_config.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 backend config module."""
from __future__ import annotations
@@ -25,7 +25,7 @@ def test_ip_config() -> None:
(
(None, False, True),
(None, True, True),
- (AdviceCategory.OPERATORS, True, True),
+ (AdviceCategory.COMPATIBILITY, True, True),
(AdviceCategory.OPTIMIZATION, True, False),
),
)
@@ -42,7 +42,7 @@ def test_target_info(
backend_registry.register(
"backend",
BackendConfiguration(
- [AdviceCategory.OPERATORS],
+ [AdviceCategory.COMPATIBILITY],
[System.CURRENT],
BackendType.BUILTIN,
),