Skip to content

Commit

Permalink
test: change string concatenation to template
Browse files Browse the repository at this point in the history
PR-URL: #16919
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Franziska Hinkelmann <[email protected]>
  • Loading branch information
narkedi authored and MylesBorins committed Nov 17, 2017
1 parent 7164d9a commit febd1bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fixtures/print-10-lines.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
}

0 comments on commit febd1bf

Please sign in to comment.