Browse Source

test: remove unused args and comparison fix

Remove unused arguments and change non-strict comparison
to the strict one in test.

PR-URL: https://github.com/nodejs/node/pull/11396
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
v6
Alexander 8 years ago
committed by Rich Trott
parent
commit
55d202a346
  1. 6
      test/internet/test-dgram-multicast-multi-process.js

6
test/internet/test-dgram-multicast-multi-process.js

@ -22,14 +22,14 @@ if (common.inFreeBSDJail) {
return;
}
function launchChildProcess(index) {
function launchChildProcess() {
const worker = fork(__filename, ['child']);
workers[worker.pid] = worker;
worker.messagesReceived = [];
// Handle the death of workers.
worker.on('exit', function(code, signal) {
worker.on('exit', function(code) {
// Don't consider this the true death if the worker has finished
// successfully or if the exit code is 0.
if (worker.isDone || code === 0) {
@ -189,7 +189,7 @@ if (process.argv[2] === 'child') {
process.send({ message: buf.toString() });
if (receivedMessages.length == messages.length) {
if (receivedMessages.length === messages.length) {
// .dropMembership() not strictly needed but here as a sanity check.
listenSocket.dropMembership(LOCAL_BROADCAST_HOST);
process.nextTick(function() {

Loading…
Cancel
Save