summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-154.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-154.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-154.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-154.js b/test/built-ins/Object/create/15.2.3.5-4-154.js
index 6d173dedb..95975d00b 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-154.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-154.js
@@ -8,10 +8,10 @@ description: >
is own data property (8.10.5 step 5.a)
---*/
- var newObj = Object.create({}, {
- prop: {
- value: "ownDataProperty"
- }
- });
+var newObj = Object.create({}, {
+ prop: {
+ value: "ownDataProperty"
+ }
+});
assert.sameValue(newObj.prop, "ownDataProperty", 'newObj.prop');