summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.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/set/typedarray-arg-set-values-diff-buffer-other-type.js
parent098c69540ee57f94daf795b20e8a3e70ab986860 (diff)
downloadqtdeclarative-testsuites-dd2dfc9fb15db7c9e32bfe26a37d3acae43cd492.tar.gz
remove bogus checks
Diffstat (limited to 'test/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.js')
-rw-r--r--test/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.js b/test/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.js
index 4ba857e03..04ddb5237 100644
--- a/test/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.js
+++ b/test/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.js
@@ -28,9 +28,6 @@ features: [TypedArray]
testWithTypedArrayConstructors(function(TA) {
var other = TA === Float32Array ? Float64Array : Float32Array;
- if (typeof BigInt !== "undefined")
- other = TA === BigInt64Array ? BigUint64Array :
- TA === BigUint64Array ? BigInt64Array : other;
var src = new other([42, 43]);
var sample, result;