summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays
diff options
context:
space:
mode:
authorHenrique Ferreiro <henrique.ferreiro@gmail.com>2016-11-11 18:42:01 +0100
committerTom Care <tcare@microsoft.com>2016-11-11 09:42:01 -0800
commitd1d91af25698cda3372f5f8d9000262c267ea3dd (patch)
tree4d7cbb1694b299121d90e5799585bfbb1d7d38a7 /test/built-ins/TypedArrays
parentc9569a7e7e648b95beb89957204254dc85c00525 (diff)
downloadqtdeclarative-testsuites-d1d91af25698cda3372f5f8d9000262c267ea3dd.tar.gz
Integer indexed property descriptor must be non-configurable (#786)
* Integer indexed property descriptor must be non-configurable * Make the configurable key explicitly 'false'
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
}),