Skip to content

Commit

Permalink
chore: apply automated lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Dec 7, 2023
1 parent a71aadc commit c584e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/validate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe("Validate", () => {
it("Invalid", async () => {
const res = await request.post("/zod").send({ invalid: true });
expect(res.status).toEqual(400);
expect(res.body.data?.issues?.[0]?.code).toEqual('invalid_type')
expect(res.body.data?.issues?.[0]?.code).toEqual("invalid_type");
});
});
});
Expand Down

0 comments on commit c584e6a

Please sign in to comment.