Skip to content

Commit 5279fea

Browse files
committed
fix: attempt to assign to const variable '_' for lua 5.5
1 parent d69d3b5 commit 5279fea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/4.pkey.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function TestPKEYMY:testBasic()
8686
local p = mk_key(v)
8787
p = pkey.get_public(p)
8888
assert(not p:is_private())
89-
p, _ = k:derive(p)
89+
p = k:derive(p)
9090
assert(type(p) == "string")
9191
end
9292

0 commit comments

Comments
 (0)