Skip to content

Commit

Permalink
🩹 Remove redundant import
Browse files Browse the repository at this point in the history
An in a unit test was unnecessary, and this is tripping the newly
enabled errors for redundant/unnused imports. This removes the redundant
import.
  • Loading branch information
bitwizeshift committed Feb 20, 2024
1 parent e6d298d commit e46bdf0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion alloy/src/math/vec/vec3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,6 @@ mod test {
fn test_vec3() {
let vec = Vector3::new(4.0, 2.0, 0.0);

use crate::cmp::AlmostEq;
let magnitude = vec.square_magnitude();

assert!(magnitude.almost_eq(&20.0))
Expand Down

0 comments on commit e46bdf0

Please sign in to comment.