From e473d3b7b0fffd673d2d3d9b95fe8cb42b4c5bba Mon Sep 17 00:00:00 2001 From: Hweinstock Date: Tue, 22 Sep 2026 15:13:58 +0000 Subject: [PATCH] fix(test): update project create fixture version --- src/handlers/project/create/create.screen.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/project/create/create.screen.test.tsx b/src/handlers/project/create/create.screen.test.tsx index 9403cb600..40315adbe 100644 --- a/src/handlers/project/create/create.screen.test.tsx +++ b/src/handlers/project/create/create.screen.test.tsx @@ -697,7 +697,7 @@ describe("project create dispatch", () => { return { name: input.name, rootPath: join(process.cwd(), input.name), - spec: ProjectSpecSchema.parse({ name: input.name, version: 1 }), + spec: ProjectSpecSchema.parse({ name: input.name, version: 2 }), }; })(); const root = buildRoot(streams.io, core);