summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-170.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-170.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-170.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-170.js b/test/built-ins/Object/create/15.2.3.5-4-170.js
index b3c650792..308b568a2 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-170.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-170.js
@@ -9,10 +9,10 @@ description: >
(8.10.5 step 5.a)
---*/
- Math.value = "MathValue";
+Math.value = "MathValue";
- var newObj = Object.create({}, {
- prop: Math
- });
+var newObj = Object.create({}, {
+ prop: Math
+});
assert.sameValue(newObj.prop, "MathValue", 'newObj.prop');