Skip to content

Commit 8262d49

Browse files
hiroppyitaloacasas
authored andcommitted
test: refactor cluster-preload.js
PR-URL: #10701 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Italo A. Casas <[email protected]>
1 parent fc05510 commit 8262d49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fixtures/cluster-preload.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const assert = require('assert');
55
// module search paths initialized from the current working directory
66
assert.ok(module.parent);
77
const expectedPaths = require('module')._nodeModulePaths(process.cwd());
8-
assert.deepEqual(module.parent.paths, expectedPaths);
8+
assert.deepStrictEqual(module.parent.paths, expectedPaths);
99

1010
const cluster = require('cluster');
1111
cluster.isMaster || process.exit(42 + cluster.worker.id); // +42 to distinguish

0 commit comments

Comments
 (0)