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());