summaryrefslogtreecommitdiff
path: root/test/parallel/test-cluster-basic.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-04-25 23:32:35 -0700
committerRich Trott <rtrott@gmail.com>2016-04-28 14:42:51 -0700
commit8f5695865860ecf06868a89687923e7eb514b442 (patch)
tree17417f2130d412e0dd04fa46733d1ea31079b5e2 /test/parallel/test-cluster-basic.js
parent296bfd239cef866af893303220b0719e0753d3a7 (diff)
downloadandroid-node-v8-8f5695865860ecf06868a89687923e7eb514b442.tar.gz
android-node-v8-8f5695865860ecf06868a89687923e7eb514b442.tar.bz2
android-node-v8-8f5695865860ecf06868a89687923e7eb514b442.zip
test,tools: adjust function argument alignment
In preparation for a lint rule enforcing function argument alignment, adjust function arguments to be aligned. PR-URL: https://github.com/nodejs/node/pull/6390 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Imran Iqbal <imran@imraniqbal.org> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
Diffstat (limited to 'test/parallel/test-cluster-basic.js')
-rw-r--r--test/parallel/test-cluster-basic.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-cluster-basic.js b/test/parallel/test-cluster-basic.js
index ab9ce13e45..076756ab3d 100644
--- a/test/parallel/test-cluster-basic.js
+++ b/test/parallel/test-cluster-basic.js
@@ -4,7 +4,7 @@ var assert = require('assert');
var cluster = require('cluster');
assert.equal('NODE_UNIQUE_ID' in process.env, false,
- 'NODE_UNIQUE_ID should be removed on startup');
+ 'NODE_UNIQUE_ID should be removed on startup');
function forEach(obj, fn) {
Object.keys(obj).forEach(function(name, index) {
@@ -93,7 +93,7 @@ else if (cluster.isMaster) {
worker = cluster.fork();
assert.equal(worker.id, 1);
assert.ok(worker instanceof cluster.Worker,
- 'the worker is not a instance of the Worker constructor');
+ 'the worker is not a instance of the Worker constructor');
//Check event
forEach(checks.worker.events, function(bool, name, index) {