summaryrefslogtreecommitdiff
path: root/bundle/test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-08-14 16:22:31 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-08-14 10:22:31 -0400
commiteab0647bd1184d0ade9a54b8720eb52300d2ba5d (patch)
treeff6e8da85df5f2c400eb6c02505cdffd380b4e64 /bundle/test.ts
parent63bbe2a2e041388ec167d67c73f497ea7b8590c6 (diff)
refactor 'assertEquals' (denoland/deno_std#560)
* merge 'testing/pretty.ts' into 'testing/asserts.ts' * throw AssertionError in assertEquals * update misc tests use AssertionError Original: https://github.com/denoland/deno_std/commit/ff2d7f24dbc955650a11fc8db2f35c0aa38dcdb1
Diffstat (limited to 'bundle/test.ts')
-rw-r--r--bundle/test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle/test.ts b/bundle/test.ts
index d618e202b..126b8682b 100644
--- a/bundle/test.ts
+++ b/bundle/test.ts
@@ -4,10 +4,10 @@ import { test } from "../testing/mod.ts";
import {
assert,
AssertionError,
+ assertEquals,
assertStrictEq,
assertThrowsAsync
} from "../testing/asserts.ts";
-import { assertEquals } from "../testing/pretty.ts";
import { evaluate, instantiate, load, ModuleMetaData } from "./utils.ts";
/* eslint-disable @typescript-eslint/no-namespace */