Skip to content

Commit

Permalink
chore: update import paths for deno std asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Feb 8, 2024
1 parent 61019cd commit 4c60ac0
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions deps-tests.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
export {
assert,
assertEquals,
assertInstanceOf,
assertRejects,
} from "https://deno.land/std@0.215.0/testing/asserts.ts";
export { assert } from "https://deno.land/std@0.215.0/assert/assert.ts";
export { assertEquals } from "https://deno.land/std@0.215.0/assert/assert_equals.ts";
export { assertInstanceOf } from "https://deno.land/std@0.215.0/assert/assert_instance_of.ts";
export { assertRejects } from "https://deno.land/std@0.215.0/assert/assert_rejects.ts";

0 comments on commit 4c60ac0

Please sign in to comment.