Skip to content

Commit

Permalink
fix(node): do not use absolute urls (denoland/deno#6562)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry authored and denobot committed Jan 31, 2021
1 parent 59b4d78 commit 801e288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/_fs/_fs_link_test.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down

0 comments on commit 801e288

Please sign in to comment.