mirror of https://github.com/tc39/test262.git
fix: syntax error in DisposableStack test
This commit is contained in:
parent
f1a670ff59
commit
1a0aa3b866
|
@ -15,7 +15,7 @@ features: [explicit-resource-management]
|
||||||
|
|
||||||
assert.sameValue(DisposableStack.prototype[Symbol.dispose], DisposableStack.prototype.dispose);
|
assert.sameValue(DisposableStack.prototype[Symbol.dispose], DisposableStack.prototype.dispose);
|
||||||
verifyProperty(DisposableStack.prototype, Symbol.dispose, {
|
verifyProperty(DisposableStack.prototype, Symbol.dispose, {
|
||||||
enumerable: false;
|
enumerable: false,
|
||||||
writable: true;
|
writable: true,
|
||||||
configurable: true;
|
configurable: true
|
||||||
});
|
});
|
||||||
|
|
|
@ -27,6 +27,6 @@ assert.sameValue(
|
||||||
);
|
);
|
||||||
|
|
||||||
verifyProperty(DisposableStack.prototype, 'disposed', {
|
verifyProperty(DisposableStack.prototype, 'disposed', {
|
||||||
enumerable: false;
|
enumerable: false,
|
||||||
configurable: true;
|
configurable: true
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue