summaryrefslogtreecommitdiff
path: root/test/parallel/test-spawn-cmd-named-pipe.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2015-10-14 21:22:55 -0700
committerRich Trott <rtrott@gmail.com>2015-10-16 00:31:04 -0700
commit676e61872f54dd546e324599c7871c20b798386a (patch)
tree43b073ac234e3e66882f50cfa5337baea001b012 /test/parallel/test-spawn-cmd-named-pipe.js
parent0140e1b5e39342f87133f7f42e9b49a702f69b39 (diff)
downloadandroid-node-v8-676e61872f54dd546e324599c7871c20b798386a.tar.gz
android-node-v8-676e61872f54dd546e324599c7871c20b798386a.tar.bz2
android-node-v8-676e61872f54dd546e324599c7871c20b798386a.zip
test: apply correct assert.fail() arguments
The assert.fail function signature has the message as the third argument but, understandably, it is often assumed that it is the first argument (or at least the first argument if no other arguments are passed). This corrects the assert.fail() invocations in the Node.js tests. Before: assert.fail('message'); // result: AssertionError: 'message' undefined undefined After: assert.fail(null, null, 'message'); // result: AssertionError: message PR-URL: https://github.com/nodejs/node/pull/3378 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-spawn-cmd-named-pipe.js')
-rw-r--r--test/parallel/test-spawn-cmd-named-pipe.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-spawn-cmd-named-pipe.js b/test/parallel/test-spawn-cmd-named-pipe.js
index c664f7f358..5371577e6c 100644
--- a/test/parallel/test-spawn-cmd-named-pipe.js
+++ b/test/parallel/test-spawn-cmd-named-pipe.js
@@ -39,7 +39,7 @@ if (!process.argv[2]) {
const comspec = process.env['comspec'];
if (!comspec || comspec.length === 0) {
- assert.fail('Failed to get COMSPEC');
+ assert.fail(null, null, 'Failed to get COMSPEC');
}
const args = ['/c', process.execPath, __filename, 'child',