summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays')
-rw-r--r--test/built-ins/TypedArrays/internals/DefineOwnProperty/key-is-lower-than-zero.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/TypedArrays/internals/DefineOwnProperty/key-is-lower-than-zero.js b/test/built-ins/TypedArrays/internals/DefineOwnProperty/key-is-lower-than-zero.js
index d7072b988..ce70399f0 100644
--- a/test/built-ins/TypedArrays/internals/DefineOwnProperty/key-is-lower-than-zero.js
+++ b/test/built-ins/TypedArrays/internals/DefineOwnProperty/key-is-lower-than-zero.js
@@ -24,7 +24,7 @@ testWithTypedArrayConstructors(function(TA) {
assert.sameValue(
Reflect.defineProperty(sample, "-1", {
value: 42,
- configurable: true,
+ configurable: false,
enumerable: true,
writable: true
}),