fix: syntax error in DisposableStack test

This commit is contained in:
Huáng Jùnliàng 2024-09-27 09:26:36 -04:00 committed by Ms2ger
parent f1a670ff59
commit 1a0aa3b866
2 changed files with 5 additions and 5 deletions

View File

@ -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
});

View File

@ -27,6 +27,6 @@ assert.sameValue(
);
verifyProperty(DisposableStack.prototype, 'disposed', {
enumerable: false;
configurable: true;
enumerable: false,
configurable: true
});