summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js
diff options
context:
space:
mode:
authorLeo Balter <leonardo.balter@gmail.com>2018-02-15 13:27:25 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 16:45:09 -0500
commitdd2dfc9fb15db7c9e32bfe26a37d3acae43cd492 (patch)
tree9c311630a6acb164d96dd5cc5588bfe67a404ac3 /test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js
parent098c69540ee57f94daf795b20e8a3e70ab986860 (diff)
downloadqtdeclarative-testsuites-dd2dfc9fb15db7c9e32bfe26a37d3acae43cd492.tar.gz
remove bogus checks
Diffstat (limited to 'test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js')
-rw-r--r--test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js b/test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js
index befe99716..530ec1055 100644
--- a/test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js
+++ b/test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js
@@ -47,10 +47,6 @@ Number.prototype.toLocaleString = function() {
};
};
-if (typeof BigInt !== "undefined") {
- BigInt.prototype.toLocaleString = Number.prototype.toLocaleString;
-}
-
var arr = [42, 0];
var expected = ["hacks1", "hacks2"].join(separator);