summaryrefslogtreecommitdiff
path: root/test/addons/repl-domain-abort
diff options
context:
space:
mode:
authorDaniil Shakir <phpinfo12345@gmail.com>2017-08-22 00:36:32 +0300
committerJames M Snell <jasnell@gmail.com>2017-08-23 08:17:01 -0700
commit6c382dea6bb88330cb2a66a097a49401da85f878 (patch)
tree42338867320df36bc86f9c2daefafcd39bf05152 /test/addons/repl-domain-abort
parent954b346e5a9237dc8e0c87dd8f544d05b81189a0 (diff)
downloadandroid-node-v8-6c382dea6bb88330cb2a66a097a49401da85f878.tar.gz
android-node-v8-6c382dea6bb88330cb2a66a097a49401da85f878.tar.bz2
android-node-v8-6c382dea6bb88330cb2a66a097a49401da85f878.zip
test: remove unused parameters
PR-URL: https://github.com/nodejs/node/pull/14968 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Kunal Pathak <kunal.pathak@microsoft.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: David Cai <davidcai1993@yahoo.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/addons/repl-domain-abort')
-rw-r--r--test/addons/repl-domain-abort/test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/addons/repl-domain-abort/test.js b/test/addons/repl-domain-abort/test.js
index b1aae497e8..314a219125 100644
--- a/test/addons/repl-domain-abort/test.js
+++ b/test/addons/repl-domain-abort/test.js
@@ -47,7 +47,7 @@ const lines = [
const dInput = new stream.Readable();
const dOutput = new stream.Writable();
-dInput._read = function _read(size) {
+dInput._read = function _read() {
while (lines.length > 0 && this.push(lines.shift()));
if (lines.length === 0)
this.push(null);