diff options
Diffstat (limited to 'test/parallel/test-cluster-eaccess.js')
-rw-r--r-- | test/parallel/test-cluster-eaccess.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-cluster-eaccess.js b/test/parallel/test-cluster-eaccess.js index 7a3bc1c5cd..4c2d284293 100644 --- a/test/parallel/test-cluster-eaccess.js +++ b/test/parallel/test-cluster-eaccess.js @@ -41,7 +41,7 @@ if (cluster.isMaster && process.argv.length !== 3) { // Makes sure master is able to fork the worker cluster.on('fork', common.mustCall()); - // makes sure the worker is ready + // Makes sure the worker is ready worker.on('online', common.mustCall()); worker.on('message', common.mustCall(function(err) { @@ -71,7 +71,7 @@ if (cluster.isMaster && process.argv.length !== 3) { }); })); } else if (process.argv.length === 3) { - // child process (of cluster.worker) + // Child process (of cluster.worker) const PIPE_NAME = process.argv[2]; const server = net.createServer().listen(PIPE_NAME, common.mustCall(() => { |