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

@ -119,7 +119,7 @@ local function resolve(v)
end
local function reject(v)
return new(function (_reject)
return new(function (_, _reject)
_reject(v);
end);
end