summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-167.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-167.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-167.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-167.js b/test/built-ins/Object/create/15.2.3.5-4-167.js
index 2f4959e6c..84ce5be59 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-167.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-167.js
@@ -9,12 +9,12 @@ description: >
(8.10.5 step 5.a)
---*/
- var str = new String("abc");
+var str = new String("abc");
- str.value = "StrValue";
+str.value = "StrValue";
- var newObj = Object.create({}, {
- prop: str
- });
+var newObj = Object.create({}, {
+ prop: str
+});
assert.sameValue(newObj.prop, "StrValue", 'newObj.prop');