Skip to content

Commit c8923dd

Browse files
test: fix lint
1 parent e6a219f commit c8923dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parallel/test-parse-args.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1084,11 +1084,11 @@ test('help value for option must be a string', () => {
10841084

10851085
test('when option has help text values but help arg value is not provided, then no help value appear', () => {
10861086
const args = ['-f', 'bar'];
1087-
const options = { foo: { type: 'string', short: 'f', help: 'help text'} };
1088-
const expected = { values: { __proto__: null, foo: 'bar' }, positionals: []};
1087+
const options = { foo: { type: 'string', short: 'f', help: 'help text' } };
1088+
const expected = { values: { __proto__: null, foo: 'bar' }, positionals: [] };
10891089
const result = parseArgs({ args, options, allowPositionals: true });
10901090
assert.deepStrictEqual(result, expected);
1091-
})
1091+
});
10921092

10931093
test('when option has short and long flags, then both appear in usage', () => {
10941094
const args = ['-f', 'bar'];

0 commit comments

Comments
 (0)