Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
test(features/command-line-args): match dump output after removing `m…
Browse files Browse the repository at this point in the history
…ultiple`

in aa0a3d4 I removed `multiple` from the `arr` option
I didn't expect any change, but I was wrong.

75lb/command-line-args#106
  • Loading branch information
karfau committed Jan 13, 2020
1 parent d0b0795 commit 58094bd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions command-line-args/dump.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,17 @@
}
},
"--flag --count --count --str=xyz --arr=abc --arr=def first second --help": {
"arguments": [],
"arguments": [
"first",
"second"
],
"options": {
"flag": true,
"count": 2,
"str": "xyz",
"arr": [
"abc",
"def",
"first",
"second"
"def"
],
"help": true
}
Expand Down

0 comments on commit 58094bd

Please sign in to comment.