Skip to content

Commit db1288c

Browse files
committed
fmt(core-tests): apply rustfmt to mat4_mul_tests.rs (assert_ne! multi-line)
1 parent c7d31e0 commit db1288c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

crates/rmg-core/tests/mat4_mul_tests.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,11 @@ fn rotations_do_not_produce_negative_zero() {
5555
Mat4::rotation_z(a),
5656
] {
5757
for &e in m.to_array().iter() {
58-
assert_ne!(e.to_bits(), neg_zero, "found -0.0 in rotation matrix for angle {a}");
58+
assert_ne!(
59+
e.to_bits(),
60+
neg_zero,
61+
"found -0.0 in rotation matrix for angle {a}"
62+
);
5963
}
6064
}
6165
}

0 commit comments

Comments
 (0)