diff --git a/tests/unit/utils/zod-to-json-schema.test.ts b/tests/unit/utils/zod-to-json-schema.test.ts index 2c27050..e0ca230 100644 --- a/tests/unit/utils/zod-to-json-schema.test.ts +++ b/tests/unit/utils/zod-to-json-schema.test.ts @@ -282,7 +282,7 @@ describe("zodToJsonSchema", () => { test("handles unknown types with fallback", () => { // Create a custom Zod type that isn't handled const customSchema = z.any(); - expect(zodToJsonSchema(customSchema)).toEqual({ type: "any" }); + expect(zodToJsonSchema(customSchema)).toEqual({ type: "string" }); }); test("handles deeply nested structures", () => {