summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/set/typedarray-arg-src-byteoffset-internal.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/set/typedarray-arg-src-byteoffset-internal.js')
-rw-r--r--test/built-ins/TypedArray/prototype/set/typedarray-arg-src-byteoffset-internal.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/built-ins/TypedArray/prototype/set/typedarray-arg-src-byteoffset-internal.js b/test/built-ins/TypedArray/prototype/set/typedarray-arg-src-byteoffset-internal.js
index 498ac5fc8..c3bfdeb28 100644
--- a/test/built-ins/TypedArray/prototype/set/typedarray-arg-src-byteoffset-internal.js
+++ b/test/built-ins/TypedArray/prototype/set/typedarray-arg-src-byteoffset-internal.js
@@ -29,9 +29,6 @@ testWithTypedArrayConstructors(function(TA) {
var sample = new TA(2);
var src = new TA([42, 43]);
var differentTA = TA === Uint8Array ? Int8Array : Uint8Array;
- if (typeof BigInt !== "undefined")
- differentTA = TA === BigInt64Array ? BigUint64Array :
- TA === BigUint64Array ? BigInt64Array : differentTA;
var src2 = new differentTA([42, 43]);
var src3 = new differentTA(sample.buffer, 0, 2);