Skip to content

Commit

Permalink
test: replace forEach with for of
Browse files Browse the repository at this point in the history
  • Loading branch information
RBrNx committed Nov 7, 2023
1 parent 5e3217c commit 3ca80bd
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 3ca80bd

Please sign in to comment.