util.promise: Fix promise.reject() to return a rejected promise, and fix buggy test for it

This commit is contained in:
Matthew Wild 2018-10-18 12:03:33 +01:00
parent 2de254acf7
commit ef7d6ba99e
2 changed files with 2 additions and 2 deletions

View file

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