Skip to content

Commit 271d6a4

Browse files
committed
fix compat test path
1 parent a56bb97 commit 271d6a4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

rapier-compat/tests/World2d.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {init, Vector2, World} from "../builds/2d-deterministic/pkg";
1+
import {init, Vector2, World} from "../builds/rapier2d-deterministic/pkg";
22

33
describe("2d/World", () => {
44
let world: World;

rapier-compat/tests/World3d.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {init, Vector3, World} from "../builds/3d-deterministic/pkg";
1+
import {init, Vector3, World} from "../builds/rapier3d-deterministic/pkg";
22

33
describe("3d/World", () => {
44
let world: World;

rapier-compat/tests/math2d.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Vector2, VectorOps} from "../builds/2d-deterministic/pkg";
1+
import {Vector2, VectorOps} from "../builds/rapier2d-deterministic/pkg";
22

33
describe("2d/math", () => {
44
test("Vector2", () => {

rapier-compat/tests/math3d.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Vector3, VectorOps} from "../builds/3d-deterministic/pkg";
1+
import {Vector3, VectorOps} from "../builds/rapier3d-deterministic/pkg";
22

33
describe("3d/math", () => {
44
test("Vector3", () => {

0 commit comments

Comments
 (0)