From 0a9f56a827e4d8bb1f1b3d1ed5a1732066a41af9 Mon Sep 17 00:00:00 2001 From: Jermaine Oppong Date: Sat, 17 Sep 2016 10:35:28 +0100 Subject: [PATCH] test: fixup parallel/test-async-wrap-post-did-throw.js * change var to let * replace equal with strictEqual PR-URL: https://github.com/nodejs/node/pull/8625 Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen Reviewed-By: James M Snell --- test/parallel/test-async-wrap-post-did-throw.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/parallel/test-async-wrap-post-did-throw.js b/test/parallel/test-async-wrap-post-did-throw.js index 37f18b649da..35dbfe13784 100644 --- a/test/parallel/test-async-wrap-post-did-throw.js +++ b/test/parallel/test-async-wrap-post-did-throw.js @@ -8,17 +8,17 @@ if (!common.hasCrypto) { const assert = require('assert'); const async_wrap = process.binding('async_wrap'); -var asyncThrows = 0; -var uncaughtExceptionCount = 0; +let asyncThrows = 0; +let uncaughtExceptionCount = 0; process.on('uncaughtException', (e) => { - assert.equal(e.message, 'oh noes!', 'error messages do not match'); + assert.strictEqual(e.message, 'oh noes!', 'error messages do not match'); }); process.on('exit', () => { process.removeAllListeners('uncaughtException'); - assert.equal(uncaughtExceptionCount, 1); - assert.equal(uncaughtExceptionCount, asyncThrows); + assert.strictEqual(uncaughtExceptionCount, 1); + assert.strictEqual(uncaughtExceptionCount, asyncThrows); }); function init() { }