aboutsummaryrefslogtreecommitdiff
path: root/verif/tests/test_tosa_result_checker.py
diff options
context:
space:
mode:
Diffstat (limited to 'verif/tests/test_tosa_result_checker.py')
-rw-r--r--verif/tests/test_tosa_result_checker.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/verif/tests/test_tosa_result_checker.py b/verif/tests/test_tosa_result_checker.py
index d78d158..f9bda39 100644
--- a/verif/tests/test_tosa_result_checker.py
+++ b/verif/tests/test_tosa_result_checker.py
@@ -32,12 +32,12 @@ def _delete_data_file(file: Path):
@pytest.mark.parametrize(
"data_type,expected",
[
- (np.int8, trc.TestResult.MISMATCH),
- (np.int16, trc.TestResult.MISMATCH),
+ (np.int8, trc.TestResult.PASS),
+ (np.int16, trc.TestResult.PASS),
(np.int32, trc.TestResult.PASS),
(np.int64, trc.TestResult.PASS),
- (np.uint8, trc.TestResult.MISMATCH),
- (np.uint16, trc.TestResult.MISMATCH),
+ (np.uint8, trc.TestResult.PASS),
+ (np.uint16, trc.TestResult.PASS),
(np.uint32, trc.TestResult.MISMATCH),
(np.uint64, trc.TestResult.MISMATCH),
(np.float16, trc.TestResult.PASS),