From bb949581187d062014d222147b7a24100c4f4a0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Pleva=C4=8D?= Date: Thu, 14 Nov 2024 15:22:46 +0100 Subject: [PATCH] Fix unsigned mul test --- tests/test_maji_umul.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_maji_umul.py b/tests/test_maji_umul.py index dec0e2a..be9e61b 100644 --- a/tests/test_maji_umul.py +++ b/tests/test_maji_umul.py @@ -22,7 +22,7 @@ if __name__ == "__main__": # try to test maji for a in range(256): for b in range(256): - testOut = c_uint16(maji(a, b)) + testOut = c_uint16(maji(a, b)).value expectedBus = c_uint16(c_uint8(a).value * c_uint8(b).value).value if (expectedBus != testOut):