Skip to content

Commit fbec5ec

Browse files
imkabirevanlucas
authored andcommitted
test: replace string concatenation with template
PR-URL: #16916 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]>
1 parent 407eb6f commit fbec5ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fixtures/cluster-preload-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ const cluster = require('cluster');
22
if (cluster.isMaster) {
33
cluster.fork(); // one child
44
cluster.on('exit', function(worker, code, signal) {
5-
console.log('worker terminated with code ' + code);
5+
console.log(`worker terminated with code ${code}`);
66
});
77
}

0 commit comments

Comments
 (0)