summaryrefslogtreecommitdiff
path: root/test/intl402
diff options
context:
space:
mode:
authorZibi Braniecki <zibi@braniecki.net>2017-10-02 21:41:27 +0200
committerLeo Balter <leonardo.balter@gmail.com>2017-10-02 15:41:27 -0400
commit2889100f21876646bc4fb4c3c69e2290741d7c5c (patch)
treebf579fa864a7d63e11f869dee3de8ffbd8d71807 /test/intl402
parentaca48e4dfd2ce97eff7c56baed93bba54b553fec (diff)
downloadqtdeclarative-testsuites-2889100f21876646bc4fb4c3c69e2290741d7c5c.tar.gz
Update Intl.NumberFormat.prototype.formatToParts.length to expect 1 (#1249)
As per https://github.com/tc39/ecma402/pull/160 the formatToParts.length is set to 1.
Diffstat (limited to 'test/intl402')
-rw-r--r--test/intl402/NumberFormat/prototype/formatToParts/length.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/intl402/NumberFormat/prototype/formatToParts/length.js b/test/intl402/NumberFormat/prototype/formatToParts/length.js
index 071b9d0aa..7a1a9abdd 100644
--- a/test/intl402/NumberFormat/prototype/formatToParts/length.js
+++ b/test/intl402/NumberFormat/prototype/formatToParts/length.js
@@ -6,7 +6,7 @@ description: Intl.NumberFormat.prototype.formatToParts.length.
includes: [propertyHelper.js]
---*/
-assert.sameValue(Intl.NumberFormat.prototype.formatToParts.length, 0);
+assert.sameValue(Intl.NumberFormat.prototype.formatToParts.length, 1);
verifyNotEnumerable(Intl.NumberFormat.prototype.formatToParts, "length");
verifyNotWritable(Intl.NumberFormat.prototype.formatToParts, "length");