Skip to content

Commit 0b856ff

Browse files
committed
fixup! test: replace forEach with for of
1 parent 9e60471 commit 0b856ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-webcrypto-sign-verify-hmac.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ async function testSign({ hash,
172172
(async function() {
173173
const variations = [];
174174

175-
for(const vector of vectors){
175+
for (const vector of vectors) {
176176
variations.push(testVerify(vector));
177177
variations.push(testSign(vector));
178178
}

0 commit comments

Comments
 (0)