summaryrefslogtreecommitdiff
path: root/tools/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/util.js')
-rw-r--r--tools/util.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/util.js b/tools/util.js
index c40db305c..90f72b9ef 100644
--- a/tools/util.js
+++ b/tools/util.js
@@ -5,11 +5,11 @@ import {
join,
resolve,
toFileUrl,
-} from "https://deno.land/std@0.84.0/path/mod.ts";
+} from "../test_util/std/path/mod.ts";
export { dirname, fromFileUrl, join, resolve, toFileUrl };
-export { existsSync } from "https://deno.land/std@0.84.0/fs/mod.ts";
-export { readLines } from "https://deno.land/std@0.97.0/io/mod.ts";
-export { delay } from "https://deno.land/std@0.84.0/async/delay.ts";
+export { existsSync } from "../test_util/std/fs/mod.ts";
+export { readLines } from "../test_util/std/io/mod.ts";
+export { delay } from "../test_util/std/async/delay.ts";
export const ROOT_PATH = dirname(dirname(fromFileUrl(import.meta.url)));