From ebf69d3944bc9715c0c8127f7e6bacae5ffdf2fa Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 29 Jun 2020 15:09:59 -0400 Subject: [PATCH] fix(std/node): do not use absolute urls (denoland/deno#6562) --- node/_fs/_fs_link_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/_fs/_fs_link_test.ts b/node/_fs/_fs_link_test.ts index 0251e55fb7285..bac1607b4fbf1 100644 --- a/node/_fs/_fs_link_test.ts +++ b/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";