mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
fix(std/node): do not use absolute urls (#6562)
This commit is contained in:
parent
3c5459d849
commit
f5242f333e
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue