Skip to content

Commit

Permalink
test: replace forEach with for of
Browse files Browse the repository at this point in the history
PR-URL: #50594
Reviewed-By: Rafael Gonzaga <[email protected]>
Reviewed-By: Marco Ippolito <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
RBrNx authored and UlisesGascon committed Dec 11, 2023
1 parent 9f5860f commit 002481c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-webcrypto-sign-verify-hmac.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,10 @@ async function testSign({ hash,
(async function() {
const variations = [];

vectors.forEach((vector) => {
for (const vector of vectors) {
variations.push(testVerify(vector));
variations.push(testSign(vector));
});
}

await Promise.all(variations);
})().then(common.mustCall());

0 comments on commit 002481c

Please sign in to comment.