From dc58e5d19a5fa8b0051721ffc8c6245f8219748a Mon Sep 17 00:00:00 2001 From: Nicolas Date: Tue, 23 Dec 2025 20:28:00 +0100 Subject: [PATCH] test_ops_aarch64.py fixed --- tests/test_ops_aarch64.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ops_aarch64.py b/tests/test_ops_aarch64.py index ea54347..2158494 100644 --- a/tests/test_ops_aarch64.py +++ b/tests/test_ops_aarch64.py @@ -146,7 +146,7 @@ def test_compile(): for test, ref in zip(ret_test, ret_ref): assert isinstance(test, value) - address = variables[test][0] + address = variables[test.net][0] data = result_data[address] if test.dtype == 'int': val = int.from_bytes(data, sdb.byteorder, signed=True)