summaryrefslogtreecommitdiff
path: root/js/test_util.ts
diff options
context:
space:
mode:
authorAndy Hayden <andyhayden1@gmail.com>2019-03-06 07:23:47 -0800
committerRyan Dahl <ry@tinyclouds.org>2019-03-06 10:23:47 -0500
commit91364cabae8687e7620edac406b43cb40cb55878 (patch)
treed7a86dd3a8cc7d70cf07e1fccde2a6e5f4971281 /js/test_util.ts
parent4f623e37c58dc8ab6fff7fd3c5588eb9708c7952 (diff)
Replace deno.land/x/std with deno.land/std (#1890)
Diffstat (limited to 'js/test_util.ts')
-rw-r--r--js/test_util.ts7
1 files changed, 2 insertions, 5 deletions
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]);