Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 67a0586

Browse files
imkabirMylesBorins
authored andcommittedNov 17, 2017
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 b593d5e commit 67a0586

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 @@ var 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)
Please sign in to comment.