From 8c0290e0543af85ac82c243987d5996c00a16cc6 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Fri, 28 Dec 2018 18:08:03 +0100 Subject: test: fix failing assertion One test did not cause an assertion. By changing the test to use `assert.throws()` all tests have to throw, otherwise the test will fail. PR-URL: https://github.com/nodejs/node/pull/25250 Reviewed-By: Anna Henningsen Reviewed-By: James M Snell --- test/parallel/test-assert.js | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'test/parallel/test-assert.js') diff --git a/test/parallel/test-assert.js b/test/parallel/test-assert.js index bf2da0b5dd..a7c37e8fb3 100644 --- a/test/parallel/test-assert.js +++ b/test/parallel/test-assert.js @@ -257,16 +257,14 @@ const circular = { y: 1 }; circular.x = circular; function testAssertionMessage(actual, expected, msg) { - try { - assert.strictEqual(actual, ''); - } catch (e) { - assert.strictEqual( - e.message, - msg || strictEqualMessageStart + - `+ actual - expected\n\n+ ${expected}\n- ''` - ); - assert.ok(e.generatedMessage, 'Message not marked as generated'); - } + assert.throws( + () => assert.strictEqual(actual, ''), + { + generatedMessage: true, + message: msg || strictEqualMessageStart + + `+ actual - expected\n\n+ ${expected}\n- ''` + } + ); } function testShortAssertionMessage(actual, expected) { @@ -280,7 +278,7 @@ testShortAssertionMessage(false, 'false'); testShortAssertionMessage(100, '100'); testShortAssertionMessage(NaN, 'NaN'); testShortAssertionMessage(Infinity, 'Infinity'); -testShortAssertionMessage('', '""'); +testShortAssertionMessage('a', '"a"'); testShortAssertionMessage('foo', '\'foo\''); testShortAssertionMessage(0, '0'); testShortAssertionMessage(Symbol(), 'Symbol()'); -- cgit v1.2.3