Skip to content

Commit

Permalink
Update expectation for Intl.RelativeTimeFormat.prototype[@@toStringTag].
Browse files Browse the repository at this point in the history
The specification changed in tc39/proposal-intl-relative-time#77.
  • Loading branch information
Ms2ger authored and chicoxyzzy committed May 14, 2019
1 parent 0b70438 commit f568bca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ description: >
info: |
Intl.RelativeTimeFormat.prototype[ @@toStringTag ]
The initial value of the @@toStringTag property is the string value "Object".
The initial value of the @@toStringTag property is the string value "Intl.RelativeTimeFormat".
This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [Intl.RelativeTimeFormat, Symbol.toStringTag]
---*/

verifyProperty(Intl.RelativeTimeFormat.prototype, Symbol.toStringTag, {
value: "Object",
value: "Intl.RelativeTimeFormat",
writable: false,
enumerable: false,
configurable: true
Expand Down

0 comments on commit f568bca

Please sign in to comment.