summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jimmi Holst Christensen2018-04-26 23:18:48 +0200
committerGravatar Jimmi Holst Christensen2018-04-26 23:18:48 +0200
commit4733872b1d66f4829c7d62ace3266f11a270b63a (patch)
tree831a919923928e8a98809c535db339f3c36dbf3f
parentRemoved breakpoints and fixed a test (diff)
downloadzig-clap-4733872b1d66f4829c7d62ace3266f11a270b63a.tar.gz
zig-clap-4733872b1d66f4829c7d62ace3266f11a270b63a.tar.xz
zig-clap-4733872b1d66f4829c7d62ace3266f11a270b63a.zip
Fixed test
-rw-r--r--clap.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/clap.zig b/clap.zig
index 5a945b4..41713a4 100644
--- a/clap.zig
+++ b/clap.zig
@@ -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