From 496a361e816b3a02b38633bfbf3b3e293ba1234e Mon Sep 17 00:00:00 2001 From: abouthiroppy Date: Mon, 9 Jan 2017 15:58:37 +0900 Subject: [PATCH] test: refactor cluster-preload.js --- test/fixtures/cluster-preload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/cluster-preload.js b/test/fixtures/cluster-preload.js index 26d81d8b7a53f6..bb38793b65d7de 100644 --- a/test/fixtures/cluster-preload.js +++ b/test/fixtures/cluster-preload.js @@ -5,7 +5,7 @@ const assert = require('assert'); // module search paths initialized from the current working directory assert.ok(module.parent); const expectedPaths = require('module')._nodeModulePaths(process.cwd()); -assert.deepEqual(module.parent.paths, expectedPaths); +assert.deepStrictEqual(module.parent.paths, expectedPaths); const cluster = require('cluster'); cluster.isMaster || process.exit(42 + cluster.worker.id); // +42 to distinguish