diff options
Diffstat (limited to 'js/test_util.ts')
-rw-r--r-- | js/test_util.ts | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/js/test_util.ts b/js/test_util.ts index c85284019..7cc80e581 100644 --- a/js/test_util.ts +++ b/js/test_util.ts @@ -8,7 +8,14 @@ // See tools/unit_tests.py for more details. import * as testing from "./deps/https/deno.land/std/testing/mod.ts"; -export { assert, assertEqual } from "./deps/https/deno.land/std/testing/mod.ts"; +import { + assert, + assertEquals +} from "./deps/https/deno.land/std/testing/asserts.ts"; +export { + assert, + assertEquals +} from "./deps/https/deno.land/std/testing/asserts.ts"; // testing.setFilter must be run before any tests are defined. testing.setFilter(Deno.args[1]); @@ -64,7 +71,7 @@ test(function permSerialization() { for (const run of [true, false]) { for (const read of [true, false]) { const perms: DenoPermissions = { write, net, env, run, read }; - testing.assertEqual(perms, permFromString(permToString(perms))); + assertEquals(perms, permFromString(permToString(perms))); } } } @@ -81,5 +88,5 @@ test(function permFromStringThrows() { } catch (e) { threw = true; } - testing.assert(threw); + assert(threw); }); |