From 4733872b1d66f4829c7d62ace3266f11a270b63a Mon Sep 17 00:00:00 2001 From: Jimmi Holst Christensen Date: Thu, 26 Apr 2018 23:18:48 +0200 Subject: Fixed test --- clap.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clap.zig') 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" { testNoErr(clap, [][]const u8 { "-i=100" }, default.with("int", 100)); testNoErr(clap, [][]const u8 { "-i", "100" }, default.with("int", 100)); testNoErr(clap, [][]const u8 { "-ab" }, default.with("a", true).with("b", true)); - testNoErr(clap, [][]const u8 { "-abi 100" }, default.with("a", true).with("b", true).with("int", 100)); + testNoErr(clap, [][]const u8 { "-abi", "100" }, default.with("a", true).with("b", true).with("int", 100)); testNoErr(clap, [][]const u8 { "-abi=100" }, default.with("a", true).with("b", true).with("int", 100)); } -- cgit v1.2.3