test: change concatenated string to template
PR-URL: https://github.com/nodejs/node/pull/16912 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
This commit is contained in:
parent
ef3776a785
commit
fa86ebafa3
2
test/fixtures/loop.js
vendored
2
test/fixtures/loop.js
vendored
@ -4,7 +4,7 @@ console.log('A message', 5);
|
||||
while (t > 0) {
|
||||
if (t++ === 1000) {
|
||||
t = 0;
|
||||
console.log('Outputed message #' + k++);
|
||||
console.log(`Outputed message #${k++}`);
|
||||
}
|
||||
}
|
||||
process.exit(55);
|
||||
|
Loading…
x
Reference in New Issue
Block a user