mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.promise: Fix promise.reject() to return a rejected promise, and fix buggy test for it
This commit is contained in:
parent
2de254acf7
commit
ef7d6ba99e
2 changed files with 2 additions and 2 deletions
|
@ -253,7 +253,7 @@ describe("util.promise", function ()
|
|||
it("returns a rejected promise", function ()
|
||||
local p = promise.reject("foo");
|
||||
local cb = spy.new(function () end);
|
||||
p:next(cb);
|
||||
p:catch(cb);
|
||||
assert.spy(cb).was_called(1);
|
||||
assert.spy(cb).was_called_with("foo");
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue