mirror of
https://github.com/tc39/test262.git
synced 2025-07-21 13:04:39 +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()
|
.resolve()
|
||||||
.finally(() => MyPromise.resolve());
|
.finally(() => MyPromise.resolve());
|
||||||
|
|
||||||
assert.sameValue(true, p instanceof Promise);
|
assert.sameValue(p instanceof Promise, true);
|
||||||
assert.sameValue(false, p instanceof MyPromise);
|
assert.sameValue(p instanceof MyPromise, false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user