From ddcad56ee9bc762171fd88585fd7ab3e3da19e1e Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 4 Oct 2019 14:49:32 -0400 Subject: Move deno_std to a more convenient location. (#3057) js/deps/https/deno.land/std -> js/std --- js/test_util.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'js/test_util.ts') diff --git a/js/test_util.ts b/js/test_util.ts index 52e09301b..bb75082e6 100644 --- a/js/test_util.ts +++ b/js/test_util.ts @@ -7,11 +7,8 @@ // tests by the special string. permW1N0 means allow-write but not allow-net. // See tools/unit_tests.py for more details. -import * as testing from "./deps/https/deno.land/std/testing/mod.ts"; -import { - assert, - assertEquals -} from "./deps/https/deno.land/std/testing/asserts.ts"; +import * as testing from "../std/testing/mod.ts"; +import { assert, assertEquals } from "../std/testing/asserts.ts"; export { assert, assertThrows, @@ -21,7 +18,7 @@ export { assertStrictEq, assertStrContains, unreachable -} from "./deps/https/deno.land/std/testing/asserts.ts"; +} from "../std/testing/asserts.ts"; interface TestPermissions { read?: boolean; -- cgit v1.2.3