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