mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
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.
|
||||
|
||||
for (var i = 0; i < 10; i++) {
|
||||
console.log('count ' + i);
|
||||
console.log(`count ${i}`);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user