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/fs/ensure_dir_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/fs/ensure_dir_test.ts') diff --git a/std/fs/ensure_dir_test.ts b/std/fs/ensure_dir_test.ts index ad34336dc..068ec8693 100644 --- a/std/fs/ensure_dir_test.ts +++ b/std/fs/ensure_dir_test.ts @@ -1,8 +1,8 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { test } from "../testing/mod.ts"; import { assertThrows, assertThrowsAsync } from "../testing/asserts.ts"; +import * as path from "../path/mod.ts"; import { ensureDir, ensureDirSync } from "./ensure_dir.ts"; -import * as path from "./path/mod.ts"; import { ensureFile, ensureFileSync } from "./ensure_file.ts"; const testdataDir = path.resolve("fs", "testdata"); -- cgit v1.2.3