Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jnyfah committed May 5, 2024
1 parent 914a7cf commit 343eb21
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/core/matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 343eb21

Please sign in to comment.