From 6cd59be7d5d3ab488e68310d1eb290cab953e81d 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 --- test/sequential/test-inspector-stops-no-file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sequential/test-inspector-stops-no-file.js b/test/sequential/test-inspector-stops-no-file.js index 772063b279f5af..9ec09fb15d93b4 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); }