mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.crypto: tests: fix some tests that didn't do much (thanks luacheck!)
This commit is contained in:
parent
5316b0005e
commit
12a9ab92de
1 changed files with 2 additions and 3 deletions
|
@ -133,12 +133,11 @@ describe("util.crypto", function ()
|
|||
string.rep("\255", 72);
|
||||
string.rep("\255", 3);
|
||||
};
|
||||
for _, sig in ipairs(invalid_sigs) do
|
||||
local r, s = crypto.parse_ecdsa_signature("");
|
||||
for _, invalid_sig in ipairs(invalid_sigs) do
|
||||
local r, s = crypto.parse_ecdsa_signature(invalid_sig);
|
||||
assert.is_nil(r);
|
||||
assert.is_nil(s);
|
||||
end
|
||||
|
||||
end);
|
||||
it("can be built", function ()
|
||||
local r, s = crypto.parse_ecdsa_signature(sig);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue