From 91364cabae8687e7620edac406b43cb40cb55878 Mon Sep 17 00:00:00 2001 From: Andy Hayden Date: Wed, 6 Mar 2019 07:23:47 -0800 Subject: Replace deno.land/x/std with deno.land/std (#1890) --- js/test_util.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'js/test_util.ts') diff --git a/js/test_util.ts b/js/test_util.ts index f2d3b8dd6..c85284019 100644 --- a/js/test_util.ts +++ b/js/test_util.ts @@ -7,11 +7,8 @@ // tests by the special string. permW0N0 means allow-write but not allow-net. // See tools/unit_tests.py for more details. -import * as testing from "./deps/https/deno.land/x/std/testing/mod.ts"; -export { - assert, - assertEqual -} from "./deps/https/deno.land/x/std/testing/mod.ts"; +import * as testing from "./deps/https/deno.land/std/testing/mod.ts"; +export { assert, assertEqual } from "./deps/https/deno.land/std/testing/mod.ts"; // testing.setFilter must be run before any tests are defined. testing.setFilter(Deno.args[1]); -- cgit v1.2.3