Update expected upper bound for west landing feet position Y coordinate in tests

This commit is contained in:
2026-05-13 16:16:14 +02:00
parent 09a35843e1
commit ba88d81287

View File

@@ -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();
}