diff options
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-31.js')
-rw-r--r-- | test/built-ins/Object/create/15.2.3.5-4-31.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-31.js b/test/built-ins/Object/create/15.2.3.5-4-31.js index 7bb081770..45044ed2f 100644 --- a/test/built-ins/Object/create/15.2.3.5-4-31.js +++ b/test/built-ins/Object/create/15.2.3.5-4-31.js @@ -9,11 +9,11 @@ description: > (15.2.3.7 step 5.a) ---*/ -var props = new Boolean(false); -props.prop = { - value: 12, - enumerable: true -}; -var newObj = Object.create({}, props); + var props = new Boolean(false); + props.prop = { + value: 12, + enumerable: true + }; + var newObj = Object.create({}, props); assert(newObj.hasOwnProperty("prop"), 'newObj.hasOwnProperty("prop") !== true'); |