From 9c4543de356797fe14dbb661732bae700e916bb1 Mon Sep 17 00:00:00 2001 From: Timo Betcke Date: Mon, 16 Dec 2024 12:54:38 +0000 Subject: [PATCH] Fixed unit test for CI --- tests/array_operations.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/array_operations.rs b/tests/array_operations.rs index 1ed3e23..6ccd3ae 100644 --- a/tests/array_operations.rs +++ b/tests/array_operations.rs @@ -562,5 +562,5 @@ fn test_integer_array() { mat_mul_test_impl!(f64, 1E-14); mat_mul_test_impl!(f32, 1E-5); -mat_mul_test_impl!(c32, 1E-5); +mat_mul_test_impl!(c32, 1E-4); mat_mul_test_impl!(c64, 1E-12);