Skip to content

Commit 313d324

Browse files
committed
test: replace forEach with for..of in test-parse-args.mjs
1 parent 81002bb commit 313d324

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-parse-args.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ for(const value of candidateGreedyOptions) {
469469
const result = parseArgs({ args, options, strict: false });
470470
assert.deepStrictEqual(result, expectedResult);
471471
});
472-
};
472+
}
473473

474474
test('strict: when candidate option value is plain text then does not throw', () => {
475475
const args = ['--with', 'abc'];

0 commit comments

Comments
 (0)