diff options
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-36.js')
-rw-r--r-- | test/built-ins/Object/create/15.2.3.5-4-36.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-36.js b/test/built-ins/Object/create/15.2.3.5-4-36.js index f11823460..5e11b46b3 100644 --- a/test/built-ins/Object/create/15.2.3.5-4-36.js +++ b/test/built-ins/Object/create/15.2.3.5-4-36.js @@ -9,10 +9,10 @@ description: > 5.a) ---*/ - JSON.prop = { - value: 12, - enumerable: true - }; - var newObj = Object.create({}, JSON); +JSON.prop = { + value: 12, + enumerable: true +}; +var newObj = Object.create({}, JSON); assert(newObj.hasOwnProperty("prop"), 'newObj.hasOwnProperty("prop") !== true'); |