diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-06-29 15:09:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-29 15:09:59 -0400 |
commit | f5242f333ec8ba3c1f4bea88a5b4c55bb14dbfb7 (patch) | |
tree | 7f56dead25087089336bb2b4793be91c3b3cd478 /std/node | |
parent | 3c5459d849502963ee44efc7c3137db6e9fc63b2 (diff) |
fix(std/node): do not use absolute urls (#6562)
Diffstat (limited to 'std/node')
-rw-r--r-- | std/node/_fs/_fs_link_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/_fs/_fs_link_test.ts b/std/node/_fs/_fs_link_test.ts index 0251e55fb..bac1607b4 100644 --- a/std/node/_fs/_fs_link_test.ts +++ b/std/node/_fs/_fs_link_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { fail, assertEquals } from "../../testing/asserts.ts"; import { link, linkSync } from "./_fs_link.ts"; -import { assert } from "https://deno.land/std@v0.50.0/testing/asserts.ts"; +import { assert } from "../../testing/asserts.ts"; const isWindows = Deno.build.os === "windows"; |