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 /log/handlers_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 'log/handlers_test.ts')
| -rw-r--r-- | log/handlers_test.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/log/handlers_test.ts b/log/handlers_test.ts index 9898d88d1..9cbf70be6 100644 --- a/log/handlers_test.ts +++ b/log/handlers_test.ts @@ -1,6 +1,6 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { test } from "../testing/mod.ts"; -import { assertEq } from "../testing/asserts.ts"; +import { assertEquals } from "../testing/asserts.ts"; import { LogLevel, getLevelName, getLevelByName } from "./levels.ts"; import { BaseHandler } from "./handlers.ts"; @@ -56,9 +56,9 @@ test(function simpleHandler() { }); } - assertEq(handler.level, testCase); - assertEq(handler.levelName, testLevel); - assertEq(handler.messages, messages); + assertEquals(handler.level, testCase); + assertEquals(handler.levelName, testLevel); + assertEquals(handler.messages, messages); } }); @@ -75,7 +75,7 @@ test(function testFormatterAsString() { levelName: "DEBUG" }); - assertEq(handler.messages, ["test DEBUG Hello, world!"]); + assertEquals(handler.messages, ["test DEBUG Hello, world!"]); }); test(function testFormatterAsFunction() { @@ -92,5 +92,5 @@ test(function testFormatterAsFunction() { levelName: "ERROR" }); - assertEq(handler.messages, ["fn formmatter ERROR Hello, world!"]); + assertEquals(handler.messages, ["fn formmatter ERROR Hello, world!"]); }); |
