summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-313.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-313.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-313.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-313.js b/test/built-ins/Object/create/15.2.3.5-4-313.js
index 0a0d7f57e..9ab55313b 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-313.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-313.js
@@ -11,11 +11,11 @@ includes: [propertyHelper.js]
---*/
var newObj = Object.create({}, {
- prop: {
- set: function () { },
- get: function () { },
- enumerable: true
- }
+ prop: {
+ set: function() {},
+ get: function() {},
+ enumerable: true
+ }
});
assert(newObj.hasOwnProperty("prop"));