From 52fbbac14ff976ee4b092a491232237ba8a8658a Mon Sep 17 00:00:00 2001 From: davidmarkclements Date: Thu, 1 Dec 2016 13:35:05 -0600 Subject: [PATCH] test: assert.equal -> assert.strictEqual changes assert.equal to assert.strictEqual to ensure specificity --- test/parallel/test-crypto-domain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-crypto-domain.js b/test/parallel/test-crypto-domain.js index 9bb6c0229648e7..ec9985719933d3 100644 --- a/test/parallel/test-crypto-domain.js +++ b/test/parallel/test-crypto-domain.js @@ -13,7 +13,7 @@ function test(fn) { var ex = new Error('BAM'); var d = domain.create(); d.on('error', common.mustCall(function(err) { - assert.equal(err, ex); + assert.strictEqual(err, ex); })); var cb = common.mustCall(function() { throw ex;