Skip to content

Commit

Permalink
test: replace literal with template string
Browse files Browse the repository at this point in the history
PR-URL: #15957
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
brantphoto authored and MylesBorins committed Oct 25, 2017
1 parent 5472173 commit f954536
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions test/parallel/test-cluster-server-restart-rr.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,31 @@ if (cluster.isMaster) {
worker1.on('listening', common.mustCall(() => {
const worker2 = cluster.fork();
worker2.on('exit', (code, signal) => {
assert.strictEqual(code, 0, 'worker2 did not exit normally');
assert.strictEqual(signal, null, 'worker2 did not exit normally');
assert.strictEqual(
code,
0,
`worker${worker2.id} did not exit normally. Exit with code: ${code}`
);
assert.strictEqual(
signal,
null,
`worker${worker2.id} did not exit normally. Exit with signal: ${signal}`
);
worker1.disconnect();
});
}));

worker1.on('exit', common.mustCall((code, signal) => {
assert.strictEqual(code, 0, 'worker1 did not exit normally');
assert.strictEqual(signal, null, 'worker1 did not exit normally');
assert.strictEqual(
code,
0,
`worker${worker1.id} did not exit normally. Exit with code: ${code}`
);
assert.strictEqual(
signal,
null,
`worker${worker1.id} did not exit normally. Exit with code: ${signal}`
);
}));
} else {
const net = require('net');
Expand Down

0 comments on commit f954536

Please sign in to comment.