diff --git a/test/built-ins/Promise/any/does-not-perform-species-get-of-custom.js b/test/built-ins/Promise/any/does-not-perform-species-get-of-custom.js index fe112b30ae..c768c790e1 100644 --- a/test/built-ins/Promise/any/does-not-perform-species-get-of-custom.js +++ b/test/built-ins/Promise/any/does-not-perform-species-get-of-custom.js @@ -24,9 +24,6 @@ class Custom extends Promise { static get [Symbol.species]() { throw new Test262Error('Erroneous Get(C, @@species) via SpeciesConstructor() occurred.'); } - static resolve() { - throw new Test262Error('Custom.resolve was reached'); - } } Promise.any.call(Custom, [1]).then(() => $DONE(), $DONE);