Skip to content

Commit 5784b17

Browse files
wescarrljharb
authored andcommittedOct 26, 2022
[Tests] Remove duplicate test
Fixes #8
1 parent 2edc957 commit 5784b17

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎test/dash.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ test('-', function (t) {
1919
});
2020

2121
test('-a -- b', function (t) {
22-
t.plan(3);
22+
t.plan(2);
2323
t.deepEqual(parse(['-a', '--', 'b']), { a: true, _: ['b'] });
2424
t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] });
25-
t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] });
2625
});
2726

2827
test('move arguments after the -- into their own `--` array', function (t) {

0 commit comments

Comments
 (0)
Please sign in to comment.