mirror of https://github.com/tc39/test262.git
Integer indexed property descriptor must be non-configurable (#786)
* Integer indexed property descriptor must be non-configurable * Make the configurable key explicitly 'false'
This commit is contained in:
parent
c9569a7e7e
commit
d1d91af256
|
@ -24,7 +24,7 @@ testWithTypedArrayConstructors(function(TA) {
|
||||||
assert.sameValue(
|
assert.sameValue(
|
||||||
Reflect.defineProperty(sample, "-1", {
|
Reflect.defineProperty(sample, "-1", {
|
||||||
value: 42,
|
value: 42,
|
||||||
configurable: true,
|
configurable: false,
|
||||||
enumerable: true,
|
enumerable: true,
|
||||||
writable: true
|
writable: true
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in New Issue