Skip to content

Commit

Permalink
test: replace forEach() with for-loop
Browse files Browse the repository at this point in the history
PR-URL: nodejs#50596
Reviewed-By: Marco Ippolito <[email protected]>
Reviewed-By: Rafael Gonzaga <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
jabro86 authored Nov 18, 2023
1 parent 724a233 commit 59ebf6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-trace-events-vm.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ if (process.argv[2] === 'child') {
fs.readFile(file, common.mustCall((err, data) => {
const traces = JSON.parse(data.toString()).traceEvents
.filter((trace) => trace.cat !== '__metadata');
traces.forEach((trace) => {
for (const trace of traces) {
assert.strictEqual(trace.pid, proc.pid);
assert(names.includes(trace.name));
});
}
}));
}));
}

0 comments on commit 59ebf6d

Please sign in to comment.