mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.promise tests: Fix declared but unused variables
This commit is contained in:
parent
e6ff6e333c
commit
201dbb74cc
1 changed files with 2 additions and 2 deletions
|
@ -183,7 +183,7 @@ describe("util.promise", function ()
|
|||
assert.spy(cb).was_called(0);
|
||||
|
||||
local cb2 = spy.new(function () end);
|
||||
local p3 = p2:catch(cb2);
|
||||
p2:catch(cb2);
|
||||
assert.spy(cb2).was_called(0);
|
||||
end);
|
||||
|
||||
|
@ -195,7 +195,7 @@ describe("util.promise", function ()
|
|||
|
||||
local cb2 = spy.new(function () end);
|
||||
local cb2_err = spy.new(function () end);
|
||||
local p3 = p2:next(cb2, cb2_err);
|
||||
p2:next(cb2, cb2_err);
|
||||
assert.spy(cb2).was_called(0);
|
||||
assert.spy(cb2_err).was_called(1);
|
||||
assert.spy(cb2_err).was_called_with("foo");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue