From bd6f3b69866ac6f71b7a32acf8220f4d128f47a2 Mon Sep 17 00:00:00 2001 From: Noritaka Kobayashi Date: Tue, 7 Oct 2025 23:46:21 +0900 Subject: [PATCH] refactor(test): remove stray character in create.test-d.ts --- tests/types/create.test-d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/types/create.test-d.ts b/tests/types/create.test-d.ts index 5908fd2..33e34e3 100644 --- a/tests/types/create.test-d.ts +++ b/tests/types/create.test-d.ts @@ -15,7 +15,7 @@ it('infers initial values from primitives in the schema', async () => { expectTypeOf(new Collection({ schema: z.object({ id: z.string() }) }).create) .parameter(0) .toEqualTypeOf<{ id: string }>() - z + expectTypeOf( new Collection({ schema: z.object({ id: z.string().optional() }) }).create, )