Promise.any: fix "invoke-then.js" test

This commit is contained in:
Rick Waldron 2020-03-30 09:47:07 -04:00
parent 9ccd3a7b9e
commit 299cd74ef2
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ flags: [async]
features: [Promise.any, arrow-function]
---*/
let promise = new Promise(() => {});
let promise = Promise.resolve();
let boundThen = promise.then.bind(promise);
promise.then = function(resolver, rejectElement) {