summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-224.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-224.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-224.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-224.js b/test/built-ins/Object/create/15.2.3.5-4-224.js
index 21ec7f049..e5e392749 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-224.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-224.js
@@ -8,13 +8,13 @@ description: >
'Properties' is the JSON object (8.10.5 step 6.b)
---*/
-var newObj = Object.create({}, {
- prop: {
- writable: JSON
- }
-});
-var hasProperty = newObj.hasOwnProperty("prop");
-newObj.prop = 121;
+ var newObj = Object.create({}, {
+ prop: {
+ writable: JSON
+ }
+ });
+ var hasProperty = newObj.hasOwnProperty("prop");
+ newObj.prop = 121;
assert(hasProperty, 'hasProperty !== true');
assert.sameValue(newObj.prop, 121, 'newObj.prop');