Skip to content

Commit fe8c46a

Browse files
soulmonktargos
authored andcommitted
test: var to const in test-repl-multiline.js
PR-URL: #30433 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent 325dc23 commit fe8c46a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-repl-multiline.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const assert = require('assert');
55
const repl = require('repl');
66
const inputStream = new ArrayStream();
77
const outputStream = new ArrayStream();
8-
const input = ['var foo = {', '};', 'foo;'];
8+
const input = ['const foo = {', '};', 'foo;'];
99
let output = '';
1010

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

0 commit comments

Comments
 (0)