aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSébastien Crozet <sebcrozet@dimforge.com>2024-01-24 23:11:42 +0100
committerSébastien Crozet <sebcrozet@dimforge.com>2024-01-24 23:11:42 +0100
commit1837d8f2b74c6db43925d3dc932f9a42f029b98f (patch)
treecfe1ed89d19bcc2909cf9ee3087ad32f1cf48764 /src
parent46b244167ce3a63331b2526689a3bc3d7faafde0 (diff)
downloadrapier-1837d8f2b74c6db43925d3dc932f9a42f029b98f.tar.gz
rapier-1837d8f2b74c6db43925d3dc932f9a42f029b98f.tar.bz2
rapier-1837d8f2b74c6db43925d3dc932f9a42f029b98f.zip
chore: fix tests
Diffstat (limited to 'src')
-rw-r--r--src/pipeline/collision_pipeline.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pipeline/collision_pipeline.rs b/src/pipeline/collision_pipeline.rs
index b086fbe..796cc84 100644
--- a/src/pipeline/collision_pipeline.rs
+++ b/src/pipeline/collision_pipeline.rs
@@ -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;
}