summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-tab.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-repl-tab.js')
-rw-r--r--test/parallel/test-repl-tab.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/parallel/test-repl-tab.js b/test/parallel/test-repl-tab.js
index b41f43c667..7baa7d0aac 100644
--- a/test/parallel/test-repl-tab.js
+++ b/test/parallel/test-repl-tab.js
@@ -5,8 +5,9 @@ const repl = require('repl');
const zlib = require('zlib');
// just use builtin stream inherited from Duplex
-var putIn = zlib.createGzip();
-var testMe = repl.start('', putIn, function(cmd, context, filename, callback) {
+const putIn = zlib.createGzip();
+const testMe = repl.start('', putIn, function(cmd, context, filename,
+ callback) {
callback(null, cmd);
});