aboutsummaryrefslogtreecommitdiff
path: root/test/sequential/test-inspector-stops-no-file.js
diff options
context:
space:
mode:
authorFran Herrero <francisco.herrero@axa-groupsolutions.com>2017-11-21 13:55:39 +0100
committerJames M Snell <jasnell@gmail.com>2017-11-21 07:49:29 -0800
commit3e29e0126ed5f3d1ad0ff9e53f4ebc5edd696563 (patch)
treeb8589f37303c88c961027d268e43006a6c459abe /test/sequential/test-inspector-stops-no-file.js
parent9f2f56dd40528a1b620860e13adc80eba970b573 (diff)
downloadandroid-node-v8-3e29e0126ed5f3d1ad0ff9e53f4ebc5edd696563.tar.gz
android-node-v8-3e29e0126ed5f3d1ad0ff9e53f4ebc5edd696563.tar.bz2
android-node-v8-3e29e0126ed5f3d1ad0ff9e53f4ebc5edd696563.zip
test: remove unused parameter
PR-URL: https://github.com/nodejs/node/pull/17193 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com>
Diffstat (limited to 'test/sequential/test-inspector-stops-no-file.js')
-rw-r--r--test/sequential/test-inspector-stops-no-file.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sequential/test-inspector-stops-no-file.js b/test/sequential/test-inspector-stops-no-file.js
index 772063b279..9ec09fb15d 100644
--- a/test/sequential/test-inspector-stops-no-file.js
+++ b/test/sequential/test-inspector-stops-no-file.js
@@ -7,7 +7,7 @@ const child = spawn(process.execPath,
[ '--inspect', 'no-such-script.js' ],
{ 'stdio': 'inherit' });
-function signalHandler(value) {
+function signalHandler() {
child.kill();
process.exit(1);
}