diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/testing.ts | 2 | ||||
-rw-r--r-- | testing/util_test.ts | 6 |
2 files changed, 4 insertions, 4 deletions
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<void>; 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")); |