From 4f00218d6d2bd6169b08e6c83cff52852e621985 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 30 May 2018 18:05:23 +0200 Subject: Remove extension hack in ResolveModule. --- testing/testing.ts | 2 +- testing/util_test.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'testing') diff --git a/testing/testing.ts b/testing/testing.ts index 969c15704..4d7cd9c6c 100644 --- a/testing/testing.ts +++ b/testing/testing.ts @@ -13,7 +13,7 @@ limitations under the License. */ -export { assert, assertEqual, equal } from "./util"; +export { assert, assertEqual, equal } from "./util.ts"; export type TestFunction = () => void | Promise; diff --git a/testing/util_test.ts b/testing/util_test.ts index 44f61f9c4..34bd97e0f 100644 --- a/testing/util_test.ts +++ b/testing/util_test.ts @@ -13,9 +13,9 @@ limitations under the License. */ -import { test } from "./index"; -import { assert } from "./util"; -import * as util from "./util"; +import { test } from "./index.ts"; +import { assert } from "./util.ts"; +import * as util from "./util.ts"; test(async function util_equal() { assert(util.equal("world", "world")); -- cgit v1.2.3