summaryrefslogtreecommitdiff
path: root/testing/main.ts
diff options
context:
space:
mode:
authorEnokMan <416828041@qq.com>2019-02-24 00:13:54 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-02-23 11:13:53 -0500
commita4383984d1a5aa3d6b3d843a89ded8fbb1015d36 (patch)
tree36103c41c3cb391e8015e8f9a470265e8906d0da /testing/main.ts
parentd63a2e02246c0eb2ee6258b8fc32bbd0f9378567 (diff)
Fixed non-standard prefix on importing (denoland/deno_std#216)
Original: https://github.com/denoland/deno_std/commit/f65fda8336e72fe0cc19df2077eae5a00e64d337
Diffstat (limited to 'testing/main.ts')
-rw-r--r--testing/main.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/main.ts b/testing/main.ts
index d7e703697..077d662ee 100644
--- a/testing/main.ts
+++ b/testing/main.ts
@@ -1,3 +1,3 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-import { runTests } from "mod.ts";
+import { runTests } from "./mod.ts";
runTests();