Skip to content

Commit

Permalink
updated line length
Browse files Browse the repository at this point in the history
  • Loading branch information
jennazee committed Oct 15, 2017
1 parent 37f42a5 commit 4fd69e2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions test/parallel/test-cluster-server-restart-none.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,19 @@ 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. exited with code ${code}`);
assert.strictEqual(signal, null, `worker2 did not exit normally. exited with signal ${signal}`);
assert.strictEqual(code, 0, `worker2 did not exit normally. exited with\
code ${code}`);
assert.strictEqual(signal, null, `worker2 did not exit normally. exited\
with signal ${signal}`);
worker1.disconnect();
});
}));

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

0 comments on commit 4fd69e2

Please sign in to comment.