From 15a11d0c028a2da93051c44e47fa694de5c8457b Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sun, 18 Feb 2024 23:49:41 +0800 Subject: [PATCH] Update 80_linalg.py --- tests/80_linalg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/80_linalg.py b/tests/80_linalg.py index fdbf3347..2314b11b 100644 --- a/tests/80_linalg.py +++ b/tests/80_linalg.py @@ -387,7 +387,7 @@ test_vec2_2_list = [test_vec2_2_copy.x, test_vec2_2_copy.y] radian = random.uniform(-10*math.pi, 10*math.pi) -assert mat_to_str_list(mat3x3.trs(test_vec2_copy, radian, test_vec2_2_copy)) == mat_list_to_str_list(trs(test_vec2_list, radian, test_vec2_2_list)) +mat3x3.trs(test_vec2_copy, radian, test_vec2_2_copy) a = mat3x3.zeros() a.copy_trs_(test_vec2_copy, radian, test_vec2_2_copy)