util.jwt: Remove unused return value from tests [luacheck]

This commit is contained in:
Kim Alvefur 2020-02-24 09:10:28 +01:00
parent 0bcbbed753
commit d9c8eeb889

View file

@ -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);