From 343eb214ef749e862b32d7c5e712a097bf2cfd1a Mon Sep 17 00:00:00 2001 From: Jennifer Chukwu Date: Sun, 5 May 2024 09:39:20 +0000 Subject: [PATCH] format --- tests/core/matrix.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/core/matrix.rs b/tests/core/matrix.rs index 0ee41cf8..7aa551cd 100644 --- a/tests/core/matrix.rs +++ b/tests/core/matrix.rs @@ -1266,10 +1266,7 @@ fn column_iterator_double_ended_mut() { #[test] fn test_inversion_failure_leaves_matrix4_unchanged() { let mut mat = na::Matrix4::new( - 1.0, 2.0, 3.0, 4.0, - 2.0, 4.0, 6.0, 8.0, - 3.0, 6.0, 9.0, 12.0, - 4.0, 8.0, 12.0, 16.0 + 1.0, 2.0, 3.0, 4.0, 2.0, 4.0, 6.0, 8.0, 3.0, 6.0, 9.0, 12.0, 4.0, 8.0, 12.0, 16.0, ); let expected = mat.clone(); assert!(!mat.try_inverse_mut());