Skip to content

Commit

Permalink
test: replace Map with Array in cluster-net-listen tests
Browse files Browse the repository at this point in the history
PR-URL: #32381
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
Trott committed Mar 22, 2020
1 parent 1d49558 commit 7d4dedb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/sequential/test-cluster-net-listen-ipv6only-none.js
Expand Up @@ -16,7 +16,7 @@ const host = '::';
const WORKER_ACCOUNT = 3;

if (cluster.isMaster) {
const workers = new Map();
const workers = [];

const countdown = new Countdown(WORKER_ACCOUNT, () => {
// Make sure the `ipv6Only` option works. This is the part of the test that
Expand Down Expand Up @@ -46,7 +46,7 @@ if (cluster.isMaster) {
countdown.dec();
}));

workers.set(i, worker);
workers[i] = worker;
}
} else {
net.createServer().listen({
Expand Down
4 changes: 2 additions & 2 deletions test/sequential/test-cluster-net-listen-ipv6only-rr.js
Expand Up @@ -16,7 +16,7 @@ const host = '::';
const WORKER_ACCOUNT = 3;

if (cluster.isMaster) {
const workers = new Map();
const workers = [];
let address;

const countdown = new Countdown(WORKER_ACCOUNT, () => {
Expand Down Expand Up @@ -45,7 +45,7 @@ if (cluster.isMaster) {
countdown.dec();
}));

workers.set(i, worker);
workers[i] = worker;
}
} else {
// As the cluster member has the potential to grab any port
Expand Down

0 comments on commit 7d4dedb

Please sign in to comment.