mirror of
https://github.com/tc39/test262.git
synced 2025-07-20 20:44:43 +02:00
fixup: swap actual and expected in test/built-ins/Promise/prototype/finally/species-symbol.js (#1333)
This commit is contained in:
parent
06091cb6fd
commit
4b4c44cb51
@ -16,5 +16,5 @@ var p = Promise
|
||||
.resolve()
|
||||
.finally(() => MyPromise.resolve());
|
||||
|
||||
assert.sameValue(true, p instanceof Promise);
|
||||
assert.sameValue(false, p instanceof MyPromise);
|
||||
assert.sameValue(p instanceof Promise, true);
|
||||
assert.sameValue(p instanceof MyPromise, false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user