Skip to content

Commit

Permalink
Fix typos for at/prop-desc tests. (#2908)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkirsling committed Nov 19, 2020
1 parent 8051f05 commit 73798cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/built-ins/String/prototype/at/prop-desc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/TypedArray/prototype/at/prop-desc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 73798cb

Please sign in to comment.