Skip to content

Commit 385f658

Browse files
narkedievanlucas
authored andcommitted
test: change string concatenation to template
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]>
1 parent 61fbd85 commit 385f658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fixtures/print-10-lines.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
// USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

2222
for (var i = 0; i < 10; i++) {
23-
console.log('count ' + i);
23+
console.log(`count ${i}`);
2424
}

0 commit comments

Comments
 (0)