diff options
| author | 2018-04-26 23:18:48 +0200 | |
|---|---|---|
| committer | 2018-04-26 23:18:48 +0200 | |
| commit | 4733872b1d66f4829c7d62ace3266f11a270b63a (patch) | |
| tree | 831a919923928e8a98809c535db339f3c36dbf3f | |
| parent | Removed breakpoints and fixed a test (diff) | |
| download | zig-clap-4733872b1d66f4829c7d62ace3266f11a270b63a.tar.gz zig-clap-4733872b1d66f4829c7d62ace3266f11a270b63a.tar.xz zig-clap-4733872b1d66f4829c7d62ace3266f11a270b63a.zip | |
Fixed test
Diffstat (limited to '')
| -rw-r--r-- | clap.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -403,7 +403,7 @@ test "clap.parse: short" { | |||
| 403 | testNoErr(clap, [][]const u8 { "-i=100" }, default.with("int", 100)); | 403 | testNoErr(clap, [][]const u8 { "-i=100" }, default.with("int", 100)); |
| 404 | testNoErr(clap, [][]const u8 { "-i", "100" }, default.with("int", 100)); | 404 | testNoErr(clap, [][]const u8 { "-i", "100" }, default.with("int", 100)); |
| 405 | testNoErr(clap, [][]const u8 { "-ab" }, default.with("a", true).with("b", true)); | 405 | testNoErr(clap, [][]const u8 { "-ab" }, default.with("a", true).with("b", true)); |
| 406 | testNoErr(clap, [][]const u8 { "-abi 100" }, default.with("a", true).with("b", true).with("int", 100)); | 406 | testNoErr(clap, [][]const u8 { "-abi", "100" }, default.with("a", true).with("b", true).with("int", 100)); |
| 407 | testNoErr(clap, [][]const u8 { "-abi=100" }, default.with("a", true).with("b", true).with("int", 100)); | 407 | testNoErr(clap, [][]const u8 { "-abi=100" }, default.with("a", true).with("b", true).with("int", 100)); |
| 408 | } | 408 | } |
| 409 | 409 | ||