From ca8dd5361d5c04079c1b708d28481f473ade403b Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 11 Apr 2026 03:52:50 +0200 Subject: [PATCH] Fix scene ID quotes in local draft storage test --- tests/serialization/local-draft-storage.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/serialization/local-draft-storage.test.ts b/tests/serialization/local-draft-storage.test.ts index 28c09894..007bec99 100644 --- a/tests/serialization/local-draft-storage.test.ts +++ b/tests/serialization/local-draft-storage.test.ts @@ -192,11 +192,11 @@ describe("local draft storage", () => { ...createEmptyProjectDocument({ sceneName: "Entry" }), activeSceneId: "scene-hall", scenes: { - scene-main: createEmptyProjectScene({ + "scene-main": createEmptyProjectScene({ id: "scene-main", name: "Entry" }), - scene-hall: createEmptyProjectScene({ + "scene-hall": createEmptyProjectScene({ id: "scene-hall", name: "Hallway" })