From f51dcc12d7a75a677529d63eb53d7a577d5b9289 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Wed, 16 Oct 2019 19:39:33 +0100 Subject: std: Move fs/path to the top-level (#3100) --- std/io/util_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/io/util_test.ts') diff --git a/std/io/util_test.ts b/std/io/util_test.ts index c616a4bba..4f97bf5ef 100644 --- a/std/io/util_test.ts +++ b/std/io/util_test.ts @@ -2,8 +2,8 @@ const { remove } = Deno; import { test } from "../testing/mod.ts"; import { assert, assertEquals } from "../testing/asserts.ts"; +import * as path from "../path/mod.ts"; import { copyBytes, tempFile } from "./util.ts"; -import * as path from "../fs/path.ts"; test(function testCopyBytes(): void { const dst = new Uint8Array(4); -- cgit v1.2.3