chore: fix tests

This commit is contained in:
Sébastien Crozet
2024-01-24 23:11:42 +01:00
parent 46b244167c
commit 1837d8f2b7

View File

@@ -210,7 +210,7 @@ mod tests {
let mut hit = false;
for (_, _, intersecting) in narrow_phase.intersections_with(a_handle) {
for (_, _, intersecting) in narrow_phase.intersection_pairs_with(a_handle) {
if intersecting {
hit = true;
}
@@ -262,7 +262,7 @@ mod tests {
let mut hit = false;
for (_, _, intersecting) in narrow_phase.intersections_with(a_handle) {
for (_, _, intersecting) in narrow_phase.intersection_pairs_with(a_handle) {
if intersecting {
hit = true;
}