Skip to content

Commit 4fd69e2

Browse files
committed
updated line length
1 parent 37f42a5 commit 4fd69e2

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

test/parallel/test-cluster-server-restart-none.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,19 @@ if (cluster.isMaster) {
1010
worker1.on('listening', common.mustCall(() => {
1111
const worker2 = cluster.fork();
1212
worker2.on('exit', (code, signal) => {
13-
assert.strictEqual(code, 0, `worker2 did not exit normally. exited with code ${code}`);
14-
assert.strictEqual(signal, null, `worker2 did not exit normally. exited with signal ${signal}`);
13+
assert.strictEqual(code, 0, `worker2 did not exit normally. exited with\
14+
code ${code}`);
15+
assert.strictEqual(signal, null, `worker2 did not exit normally. exited\
16+
with signal ${signal}`);
1517
worker1.disconnect();
1618
});
1719
}));
1820

1921
worker1.on('exit', common.mustCall((code, signal) => {
20-
assert.strictEqual(code, 0, `worker1 did not exit normally. exited with code ${code}`);
21-
assert.strictEqual(signal, null, `worker1 did not exit normally. exited with signal ${signal}`);
22+
assert.strictEqual(code, 0, `worker1 did not exit normally. exited with\
23+
code ${code}`);
24+
assert.strictEqual(signal, null, `worker1 did not exit normally. exited\
25+
with signal ${signal}`);
2226
}));
2327
} else {
2428
const net = require('net');

0 commit comments

Comments
 (0)