summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_link_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-06-29 15:09:59 -0400
committerGitHub <noreply@github.com>2020-06-29 15:09:59 -0400
commitf5242f333ec8ba3c1f4bea88a5b4c55bb14dbfb7 (patch)
tree7f56dead25087089336bb2b4793be91c3b3cd478 /std/node/_fs/_fs_link_test.ts
parent3c5459d849502963ee44efc7c3137db6e9fc63b2 (diff)
fix(std/node): do not use absolute urls (#6562)
Diffstat (limited to 'std/node/_fs/_fs_link_test.ts')
-rw-r--r--std/node/_fs/_fs_link_test.ts2
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";