Skip to content

Commit

Permalink
test: replace forEach() in test-net-perf_hooks with for of
Browse files Browse the repository at this point in the history
PR-URL: nodejs#49831
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: Joe Sepi <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
  • Loading branch information
narcisacodreanu authored and debadree25 committed Apr 15, 2024
1 parent cb854ac commit 98813e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-net-perf_hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ obs.observe({ type: 'net' });

process.on('exit', () => {
assert.strictEqual(entries.length, 1);
entries.forEach((entry) => {
for (const entry of entries) {
assert.strictEqual(entry.name, 'connect');
assert.strictEqual(entry.entryType, 'net');
assert.strictEqual(typeof entry.startTime, 'number');
assert.strictEqual(typeof entry.duration, 'number');
assert.strictEqual(!!entry.detail.host, true);
assert.strictEqual(!!entry.detail.port, true);
});
}
});

0 comments on commit 98813e7

Please sign in to comment.