summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/ctors-bigint/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-27 17:45:25 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-27 17:45:25 -0500
commit4efdb83ae9c38c453b42bde8ffec685d4e920152 (patch)
tree3029e598349bbb1b17a21072d5e76c11040062dd /test/built-ins/TypedArrays/ctors-bigint/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js
parent27128070275f467aa62f74b515ec111ca902f997 (diff)
downloadqtdeclarative-testsuites-4efdb83ae9c38c453b42bde8ffec685d4e920152.tar.gz
Updates a portion of the BigInt tests that need work. Ref gh-1461 (#1462)
Diffstat (limited to 'test/built-ins/TypedArrays/ctors-bigint/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js')
-rw-r--r--test/built-ins/TypedArrays/ctors-bigint/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/built-ins/TypedArrays/ctors-bigint/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js b/test/built-ins/TypedArrays/ctors-bigint/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js
index f5f71f3d2..171ea96a4 100644
--- a/test/built-ins/TypedArrays/ctors-bigint/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js
+++ b/test/built-ins/TypedArrays/ctors-bigint/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js
@@ -22,11 +22,6 @@ features: [BigInt, TypedArray]
var buffer = new ArrayBuffer(1);
testWithBigIntTypedArrayConstructors(function(TA) {
- if (TA.BYTES_PER_ELEMENT === 1) {
- // Impossible to trigger this step here.
- return;
- }
-
assert.throws(RangeError, function() {
new TA(buffer);
});