From 43e4669467385ff7754ae778d8f909ec2506c83b Mon Sep 17 00:00:00 2001 From: Fran Herrero Date: Tue, 21 Nov 2017 13:55:39 +0100 Subject: [PATCH] test: remove unused parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/17193 Reviewed-By: Anatoli Papirovski Reviewed-By: Vse Mozhet Byt Reviewed-By: Colin Ihrig Reviewed-By: Michaƫl Zasso Reviewed-By: Gireesh Punathil Reviewed-By: Yuta Hiroto Reviewed-By: James M Snell Reviewed-By: Alexey Orlenko --- test/inspector/test-inspector-stops-no-file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/inspector/test-inspector-stops-no-file.js b/test/inspector/test-inspector-stops-no-file.js index d0f3a753464096..1df77362c5a778 100644 --- a/test/inspector/test-inspector-stops-no-file.js +++ b/test/inspector/test-inspector-stops-no-file.js @@ -6,7 +6,7 @@ const child = spawn(process.execPath, [ '--inspect', 'no-such-script.js' ], { 'stdio': 'inherit' }); -function signalHandler(value) { +function signalHandler() { child.kill(); process.exit(1); }