summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArrayConstructors/internals/Delete/BigInt/key-is-out-of-bounds-strict-strict.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/TypedArrayConstructors/internals/Delete/BigInt/key-is-out-of-bounds-strict-strict.js')
-rw-r--r--js/src/tests/test262/built-ins/TypedArrayConstructors/internals/Delete/BigInt/key-is-out-of-bounds-strict-strict.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/tests/test262/built-ins/TypedArrayConstructors/internals/Delete/BigInt/key-is-out-of-bounds-strict-strict.js b/js/src/tests/test262/built-ins/TypedArrayConstructors/internals/Delete/BigInt/key-is-out-of-bounds-strict-strict.js
index 8d67ba003f..d5b4a54f9b 100644
--- a/js/src/tests/test262/built-ins/TypedArrayConstructors/internals/Delete/BigInt/key-is-out-of-bounds-strict-strict.js
+++ b/js/src/tests/test262/built-ins/TypedArrayConstructors/internals/Delete/BigInt/key-is-out-of-bounds-strict-strict.js
@@ -44,11 +44,11 @@ testWithBigIntTypedArrayConstructors(function(TA) {
assert.throws(TypeError, () => {
delete sample["0"];
- }, '`delete sample["0"]` throws TypeError');
+ });
assert.throws(TypeError, () => {
delete sample[0];
- }, '`delete sample[0]` throws TypeError');
+ });
assert.sameValue(delete sample["1"], true, 'The value of `delete sample["1"]` is true');
assert.sameValue(delete sample[1], true, 'The value of `delete sample[1]` is true');