mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
test: replacing assert message with template
PR-URL: https://github.com/nodejs/node/pull/15974 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
0d38e6d01f
commit
96eba098ef
@ -8,7 +8,7 @@ const cluster = require('cluster');
|
||||
|
||||
if (cluster.isMaster) {
|
||||
cluster.on('exit', (worker, code) => {
|
||||
assert.strictEqual(code, 0, 'worker exited with error');
|
||||
assert.strictEqual(code, 0, `worker exited with code: ${code}, expected 0`);
|
||||
});
|
||||
|
||||
return cluster.fork();
|
||||
|
Loading…
Reference in New Issue
Block a user