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:
Henrique Ferreiro 2016-11-11 18:42:01 +01:00 committed by Tom Care
parent c9569a7e7e
commit d1d91af256
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ testWithTypedArrayConstructors(function(TA) {
assert.sameValue(
Reflect.defineProperty(sample, "-1", {
value: 42,
configurable: true,
configurable: false,
enumerable: true,
writable: true
}),