From 200df962710e264dd894676efde3f7c86eb44a93 Mon Sep 17 00:00:00 2001 From: Wes Carr Date: Wed, 26 Oct 2022 11:09:20 -0700 Subject: [PATCH] Remove duplicate test - Fixes #8 --- test/dash.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/dash.js b/test/dash.js index 7c897d4..5b55beb 100644 --- a/test/dash.js +++ b/test/dash.js @@ -22,7 +22,6 @@ test('-a -- b', function (t) { t.plan(3); t.deepEqual(parse(['-a', '--', 'b']), { a: true, _: ['b'] }); t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] }); - t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] }); }); test('move arguments after the -- into their own `--` array', function (t) {