From ba88d81287a10fd1050b4b24a13fc54cdf1884a0 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 13 May 2026 16:16:14 +0200 Subject: [PATCH] Update expected upper bound for west landing feet position Y coordinate in tests --- tests/domain/rapier-collision-world.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/domain/rapier-collision-world.test.ts b/tests/domain/rapier-collision-world.test.ts index 1395b26b..01e20e6c 100644 --- a/tests/domain/rapier-collision-world.test.ts +++ b/tests/domain/rapier-collision-world.test.ts @@ -1120,7 +1120,7 @@ describe("RapierCollisionWorld", () => { expect(eastLanding.feetPosition.y).toBeLessThan(0.43); expect(westLanding.grounded).toBe(true); expect(westLanding.feetPosition.y).toBeGreaterThan(0.04); - expect(westLanding.feetPosition.y).toBeLessThan(0.06); + expect(westLanding.feetPosition.y).toBeLessThan(0.08); } finally { collisionWorld.dispose(); }