Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Nov 14, 2024
1 parent 6afedaf commit 775b337
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__/standard-schema.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { util } from "../helpers/util.ts";

import * as z from "../index.ts";

import type { v1 } from "@standard-schema/spec";
import type { v1 } from "../standard-schema.ts";

test("assignability", () => {
const _s1: v1.StandardSchema = z.string();
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/standard-schema.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { util } from "../helpers/util";

import * as z from "../index";

import type { v1 } from "@standard-schema/spec";
import type { v1 } from "../standard-schema";

test("assignability", () => {
const _s1: v1.StandardSchema = z.string();
Expand Down

0 comments on commit 775b337

Please sign in to comment.