diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-18 12:03:33 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-18 12:03:33 +0100 |
commit | ef7d6ba99e768d0258840f7f261d2ea31eed07f0 (patch) | |
tree | 72ea46560789eb48b9d5958042fbd30a036867ca /spec | |
parent | 2de254acf7c23ae1cf17a08b437590e2199b26a8 (diff) | |
download | prosody-ef7d6ba99e768d0258840f7f261d2ea31eed07f0.tar.gz prosody-ef7d6ba99e768d0258840f7f261d2ea31eed07f0.zip |
util.promise: Fix promise.reject() to return a rejected promise, and fix buggy test for it
Diffstat (limited to 'spec')
-rw-r--r-- | spec/util_promise_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/util_promise_spec.lua b/spec/util_promise_spec.lua index d9cb235e..ae3df29f 100644 --- a/spec/util_promise_spec.lua +++ b/spec/util_promise_spec.lua @@ -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); |