From 739c4cd78d5014170d6917b6b48226b6fe82945d Mon Sep 17 00:00:00 2001 From: Alexey Shvayka Date: Tue, 7 Jul 2020 16:00:47 +0300 Subject: [PATCH] Remove duplicate of "subclass-species-constructor-resolve-count.js" --- .../prototype/finally/species-symbol.js | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 test/built-ins/Promise/prototype/finally/species-symbol.js diff --git a/test/built-ins/Promise/prototype/finally/species-symbol.js b/test/built-ins/Promise/prototype/finally/species-symbol.js deleted file mode 100644 index 0a8de63650..0000000000 --- a/test/built-ins/Promise/prototype/finally/species-symbol.js +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (C) 2017 V8. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. -/*--- -author: Sathya Gunasekaran -description: finally calls the SpeciesConstructor -esid: sec-promise.prototype.finally -features: [Promise.prototype.finally] ----*/ - - -class MyPromise extends Promise { - static get[Symbol.species]() { - return Promise; - } -} - -var p = Promise - .resolve() - .finally(() => MyPromise.resolve()); - -assert.sameValue(p instanceof Promise, true); -assert.sameValue(p instanceof MyPromise, false);