Skip to content

Commit fb5a12f

Browse files
authored
refactor(test): remove stray character in create.test-d.ts (#336)
1 parent 6a4f043 commit fb5a12f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/types/create.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ it('infers initial values from primitives in the schema', async () => {
1515
expectTypeOf(new Collection({ schema: z.object({ id: z.string() }) }).create)
1616
.parameter(0)
1717
.toEqualTypeOf<{ id: string }>()
18-
z
18+
1919
expectTypeOf(
2020
new Collection({ schema: z.object({ id: z.string().optional() }) }).create,
2121
)

0 commit comments

Comments
 (0)