mirror of
https://github.com/tc39/test262.git
synced 2025-07-23 05:55:36 +02:00
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…
x
Reference in New Issue
Block a user