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 <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>
  • Loading branch information
narkedi authored and evanlucas committed Nov 13, 2017
1 parent 61fbd85 commit 385f658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fixtures/print-10-lines.js
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 385f658

Please sign in to comment.