diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-06 19:42:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-06 19:42:24 -0500 |
| commit | caa383a5835c167bf6657120ad3c1c5009670785 (patch) | |
| tree | 2f350928e23e472278b9c3ebd798f13169b6d581 /testing/asserts_test.ts | |
| parent | e36edfdb3fd4709358a5f499f13cfe3d53c2b4f7 (diff) | |
Rename assertEq to assertEquals (denoland/deno_std#242)
After some discussion it was found that assertEquals is more common
in JS (vs assertEqual, assertEq) and sounds better in the negated form:
assertNotEquals vs assertNE.
Original: https://github.com/denoland/deno_std/commit/4cf39d4a1420b8153cd78d03d03ef843607ae506
Diffstat (limited to 'testing/asserts_test.ts')
| -rw-r--r-- | testing/asserts_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/asserts_test.ts b/testing/asserts_test.ts index 9dc70ad29..fb26d9cd2 100644 --- a/testing/asserts_test.ts +++ b/testing/asserts_test.ts @@ -2,7 +2,7 @@ import { assert, equal, assertStrContains, assertMatch } from "./asserts.ts"; import { test } from "./mod.ts"; -// import { assertEq as prettyAssertEqual } from "./pretty.ts"; +// import { assertEquals as prettyAssertEqual } from "./pretty.ts"; // import "./format_test.ts"; // import "./diff_test.ts"; // import "./pretty_test.ts"; |
