Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Mar 4, 2023
1 parent 0aa6021 commit 4f89461
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno/lib/__tests__/transformer.test.ts
Expand Up @@ -202,7 +202,7 @@ test("preprocess", () => {

const value = schema.parse("asdf");
expect(value).toEqual(["asdf"]);
util.assertEqual<typeof schema["_input"], unknown>(true);
util.assertEqual<(typeof schema)["_input"], unknown>(true);
});

test("async preprocess", async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/transformer.test.ts
Expand Up @@ -201,7 +201,7 @@ test("preprocess", () => {

const value = schema.parse("asdf");
expect(value).toEqual(["asdf"]);
util.assertEqual<typeof schema["_input"], unknown>(true);
util.assertEqual<(typeof schema)["_input"], unknown>(true);
});

test("async preprocess", async () => {
Expand Down

0 comments on commit 4f89461

Please sign in to comment.