From 184b56c84d5f11262f8eb97ae94bad69fcc28dc3 Mon Sep 17 00:00:00 2001 From: Wes Tyler Date: Thu, 1 Dec 2016 10:56:14 -0600 Subject: [PATCH] test: refactor test-domain-multi * assert.equal() -> assert.strictEqual() --- test/parallel/test-domain-multi.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/parallel/test-domain-multi.js b/test/parallel/test-domain-multi.js index 1b0af1dd3f438f..cf85dbca460146 100644 --- a/test/parallel/test-domain-multi.js +++ b/test/parallel/test-domain-multi.js @@ -70,8 +70,8 @@ var server = http.createServer(function(req, res) { }); process.on('exit', function() { - assert.equal(caughtA, false); - assert.equal(caughtB, true); - assert.equal(caughtC, true); + assert.strictEqual(caughtA, false); + assert.strictEqual(caughtB, true); + assert.strictEqual(caughtC, true); console.log('ok - Errors went where they were supposed to go'); });