test: change string concatenation to template
PR-URL: https://github.com/nodejs/node/pull/16919 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: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
This commit is contained in:
parent
ef86f2c852
commit
5bd8206b40
2
test/fixtures/print-10-lines.js
vendored
2
test/fixtures/print-10-lines.js
vendored
@ -20,5 +20,5 @@
|
|||||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
for (var i = 0; i < 10; i++) {
|
for (var i = 0; i < 10; i++) {
|
||||||
console.log('count ' + i);
|
console.log(`count ${i}`);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user