Skip to content

Commit

Permalink
fixup! 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 3ca80bd commit af00890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-webcrypto-sign-verify-hmac.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ async function testSign({ hash,
(async function() {
const variations = [];

for(const vector of vectors){
for (const vector of vectors) {
variations.push(testVerify(vector));
variations.push(testSign(vector));
}
Expand Down

0 comments on commit af00890

Please sign in to comment.