diff options
Diffstat (limited to 'test/built-ins/Object/getOwnPropertyDescriptor/15.2.3.3-4-32.js')
-rw-r--r-- | test/built-ins/Object/getOwnPropertyDescriptor/15.2.3.3-4-32.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Object/getOwnPropertyDescriptor/15.2.3.3-4-32.js b/test/built-ins/Object/getOwnPropertyDescriptor/15.2.3.3-4-32.js index 49f9d712a..df0942fea 100644 --- a/test/built-ins/Object/getOwnPropertyDescriptor/15.2.3.3-4-32.js +++ b/test/built-ins/Object/getOwnPropertyDescriptor/15.2.3.3-4-32.js @@ -8,7 +8,7 @@ description: > built-ins (Object.prototype.propertyIsEnumerable) ---*/ -var desc = Object.getOwnPropertyDescriptor(Object.prototype, "propertyIsEnumerable"); + var desc = Object.getOwnPropertyDescriptor(Object.prototype, "propertyIsEnumerable"); assert.sameValue(desc.value, Object.prototype.propertyIsEnumerable, 'desc.value'); assert.sameValue(desc.writable, true, 'desc.writable'); |