aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2022-04-25 15:24:56 +0100
committerMatthew Wild <mwild1@gmail.com>2022-04-25 15:24:56 +0100
commit93347db1241f8c803c24c6cf615389cb237f0031 (patch)
treeefd0cea0857752dd9778c0f70b9953fa3bfe168a /spec
parent0eef6dde1e3193ec86f949acc114e91c36c5f365 (diff)
downloadprosody-93347db1241f8c803c24c6cf615389cb237f0031.tar.gz
prosody-93347db1241f8c803c24c6cf615389cb237f0031.zip
util.argparse: Revise 553c6204fe5b with a different approach
The second return value is (not insensibly) assumed to be an error. Instead of returning a value there in the success case, copy the positional arguments into the existing opts table.
Diffstat (limited to 'spec')
-rw-r--r--spec/util_argparse_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/util_argparse_spec.lua b/spec/util_argparse_spec.lua
index 3994a041..0f2430b7 100644
--- a/spec/util_argparse_spec.lua
+++ b/spec/util_argparse_spec.lua
@@ -20,7 +20,7 @@ describe("parse", function()
local arg = { "--foo"; "bar"; "--baz" };
local opts, err = parse(arg);
assert.falsy(err);
- assert.same({ foo = true }, opts);
+ assert.same({ foo = true, "bar", "--baz" }, opts);
assert.same({ "bar"; "--baz" }, arg);
end);