From 6092c08ade72488c60f17cbac45536a8a45ada5d Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 6 Jul 2018 11:45:20 +0200 Subject: [PATCH] Update expectation for Intl.RelativeTimeFormat.prototype[@@toStringTag]. The specification changed in https://github.com/tc39/proposal-intl-relative-time/pull/77. --- .../RelativeTimeFormat/prototype/toStringTag/toStringTag.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/intl402/RelativeTimeFormat/prototype/toStringTag/toStringTag.js b/test/intl402/RelativeTimeFormat/prototype/toStringTag/toStringTag.js index 073d08a64e..672379bde7 100644 --- a/test/intl402/RelativeTimeFormat/prototype/toStringTag/toStringTag.js +++ b/test/intl402/RelativeTimeFormat/prototype/toStringTag/toStringTag.js @@ -8,7 +8,7 @@ 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] @@ -16,7 +16,7 @@ features: [Intl.RelativeTimeFormat, Symbol.toStringTag] ---*/ verifyProperty(Intl.RelativeTimeFormat.prototype, Symbol.toStringTag, { - value: "Object", + value: "Intl.RelativeTimeFormat", writable: false, enumerable: false, configurable: true