Fix typos for at/prop-desc tests. (#2908)

This commit is contained in:
Ross Kirsling 2020-11-19 02:32:38 -08:00 committed by GitHub
parent 8051f05354
commit 73798cbc61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ assert.sameValue(
'The value of `typeof String.prototype.at` is "function"'
);
verifyProperty(String.prototype.at, 'name', {
verifyProperty(String.prototype, 'at', {
enumerable: false,
writable: true,
configurable: true

View File

@ -17,7 +17,7 @@ assert.sameValue(
'The value of `typeof TypedArray.prototype.at` is "function"'
);
verifyProperty(TypedArray.prototype.at, 'name', {
verifyProperty(TypedArray.prototype, 'at', {
enumerable: false,
writable: true,
configurable: true