Add missing `return` statement to `throwsAsync` callback

This callback is expected to return a thenable.
This commit is contained in:
Timothy Flynn 2024-05-18 11:30:57 -04:00 committed by Jordan Harband
parent 5217ef396e
commit 232dfc7b60
No known key found for this signature in database
GPG Key ID: 9F6A681E35EF8B56
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ asyncTest(function () {
return assert.throwsAsync(
Test262Error,
function () {
Promise.try(function () { throw new Test262Error(); })
return Promise.try(function () { throw new Test262Error(); })
},
"error thrown from callback must become a rejection"
);