From 963386df253360fde67ca10c6bf47fec1fcc476a Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Mon, 9 Dec 2024 18:19:59 -0800 Subject: [PATCH] Fix lint --- deno/lib/__tests__/description.test.ts | 4 ++-- src/__tests__/description.test.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deno/lib/__tests__/description.test.ts b/deno/lib/__tests__/description.test.ts index b19018a5c..9a9292e44 100644 --- a/deno/lib/__tests__/description.test.ts +++ b/deno/lib/__tests__/description.test.ts @@ -28,9 +28,9 @@ test("description should carry over to chained schemas", () => { }); test("description should not carry over to chained array schema", () => { - const schema = z.string().describe(description) + const schema = z.string().describe(description); expect(schema.description).toEqual(description); expect(schema.array().description).toEqual(undefined); expect(z.array(schema).description).toEqual(undefined); -}) +}); diff --git a/src/__tests__/description.test.ts b/src/__tests__/description.test.ts index 68187238c..88cff471b 100644 --- a/src/__tests__/description.test.ts +++ b/src/__tests__/description.test.ts @@ -27,9 +27,9 @@ test("description should carry over to chained schemas", () => { }); test("description should not carry over to chained array schema", () => { - const schema = z.string().describe(description) + const schema = z.string().describe(description); expect(schema.description).toEqual(description); expect(schema.array().description).toEqual(undefined); expect(z.array(schema).description).toEqual(undefined); -}) +});