mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02: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
1 changed files with 1 additions and 1 deletions
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…
Add table
Add a link
Reference in a new issue