From f25415f2df2cb376ec368cfbdf98a4022df8e7c0 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 13 May 2026 03:04:45 +0200 Subject: [PATCH] Update material ID constants in build runtime scene tests --- tests/domain/build-runtime-scene.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/domain/build-runtime-scene.test.ts b/tests/domain/build-runtime-scene.test.ts index 9debaf96..18b727f4 100644 --- a/tests/domain/build-runtime-scene.test.ts +++ b/tests/domain/build-runtime-scene.test.ts @@ -1963,7 +1963,7 @@ describe("buildRuntimeSceneFromDocument", () => { kind: "curb", width: 0.3, height: 0.2, - materialId: "stone_flooring_200x200" + materialId: "quartzite_stone_250x250" } } } @@ -1979,7 +1979,7 @@ describe("buildRuntimeSceneFromDocument", () => { "ground_sand_300x300" ); expect(runtimeScene.paths[0]?.road.edges.left.material?.id).toBe( - "stone_flooring_200x200" + "quartzite_stone_250x250" ); });