summaryrefslogtreecommitdiff
path: root/testing/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'testing/test.ts')
-rw-r--r--testing/test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/test.ts b/testing/test.ts
index e3fc5c431..7f904346c 100644
--- a/testing/test.ts
+++ b/testing/test.ts
@@ -2,7 +2,7 @@
import { test, runIfMain } from "./mod.ts";
import {
assert,
- assertEq,
+ assertEquals,
assertStrictEq,
assertThrows,
assertThrowsAsync,
@@ -28,7 +28,7 @@ test(function testingAssertEqualActualUncoercable() {
let didThrow = false;
const a = Object.create(null);
try {
- assertEq(a, "bar");
+ assertEquals(a, "bar");
} catch (e) {
didThrow = true;
}