mirror of https://github.com/tc39/test262.git
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…
Reference in New Issue