diff --git a/test/dash.js b/test/dash.js index 5b55beb..66d9bbd 100644 --- a/test/dash.js +++ b/test/dash.js @@ -19,7 +19,7 @@ test('-', function (t) { }); test('-a -- b', function (t) { - t.plan(3); + t.plan(2); t.deepEqual(parse(['-a', '--', 'b']), { a: true, _: ['b'] }); t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] }); });