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