summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-165.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-165.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-165.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-165.js b/test/built-ins/Object/create/15.2.3.5-4-165.js
index df8cb009b..f5342706b 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-165.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-165.js
@@ -9,15 +9,15 @@ description: >
property (8.10.5 step 5.a)
---*/
- var Func = function (a, b) {
- return a + b;
- };
+var Func = function(a, b) {
+ return a + b;
+};
- var fun = new Func();
- fun.value = "FunValue";
+var fun = new Func();
+fun.value = "FunValue";
- var newObj = Object.create({}, {
- prop: fun
- });
+var newObj = Object.create({}, {
+ prop: fun
+});
assert.sameValue(newObj.prop, "FunValue", 'newObj.prop');