summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-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