Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: change var to const in test/parallel/test-repl-multiline.js
  • Loading branch information
soulmonk committed Nov 12, 2019
commit 77cefe83689ffec3d9974579bef875dcd9e21d7c
2 changes: 1 addition & 1 deletion test/parallel/test-repl-multiline.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const assert = require('assert');
const repl = require('repl');
const inputStream = new ArrayStream();
const outputStream = new ArrayStream();
const input = ['var foo = {', '};', 'foo;'];
const input = ['const foo = {', '};', 'foo;'];
let output = '';

outputStream.write = (data) => { output += data.replace('\r', ''); };
Expand Down