1
0
Fork 0
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:
Ryan Dahl 2020-06-29 15:09:59 -04:00 committed by GitHub
parent 3c5459d849
commit f5242f333e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";