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);
|
||||
verifyProperty(DisposableStack.prototype, Symbol.dispose, {
|
||||
enumerable: false;
|
||||
writable: true;
|
||||
configurable: true;
|
||||
enumerable: false,
|
||||
writable: true,
|
||||
configurable: true
|
||||
});
|
||||
|
|
|
@ -27,6 +27,6 @@ assert.sameValue(
|
|||
);
|
||||
|
||||
verifyProperty(DisposableStack.prototype, 'disposed', {
|
||||
enumerable: false;
|
||||
configurable: true;
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue