mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.jwt: Remove unused return value from tests [luacheck]
This commit is contained in:
parent
0bcbbed753
commit
d9c8eeb889
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ describe("util.jwt", function ()
|
|||
local key = "secret";
|
||||
local token = jwt.sign("wrong", { payload = "this" });
|
||||
assert.string(token);
|
||||
local ok, err = jwt.verify(key, token);
|
||||
local ok = jwt.verify(key, token);
|
||||
assert.falsy(ok)
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue