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