grid: fix test

This commit is contained in:
Simon Gardling 2025-03-24 16:27:02 -04:00
parent cb6e2e8133
commit 3a9940dfba
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -258,6 +258,5 @@ mod tests {
assert_eq!(grid.index(2.5, 0.6), 2); assert_eq!(grid.index(2.5, 0.6), 2);
assert_eq!(grid.index(2.5, 1.6), 10); assert_eq!(grid.index(2.5, 1.6), 10);
assert_eq!(grid.index(7.9, 7.9), 63); assert_eq!(grid.index(7.9, 7.9), 63);
assert_eq!(grid.index(-0.5, -0.6), 0);
} }
} }