Skip to content

Commit

Permalink
fix(std/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 Jun 29, 2020
1 parent 3bf1c90 commit ebf69d3
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 ebf69d3

Please sign in to comment.