Skip to content

Commit

Permalink
fixed kv test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Aug 24, 2015
1 parent f72ab7f commit f5a48c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/kv_short.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ test('short -k=v' , function (t) {
test('multi short -k=v' , function (t) {
t.plan(1);

var argv = parse([ '-a=whatever -b=robots' ]);
var argv = parse([ '-a=whatever', '-b=robots' ]);
t.deepEqual(argv, { a: 'whatever', b: 'robots', _: [] });
});

0 comments on commit f5a48c3

Please sign in to comment.