aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/Object/create/15.2.3.5-4-310.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-15 15:33:45 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 15:33:45 -0500
commita61b9cd671f3378c4078c0a58dd8b8be073f8cef (patch)
tree1d0e29b2fc9477ac9956c904ea051e29c3b13f2d /test/built-ins/Object/create/15.2.3.5-4-310.js
parentdedd68020b222fe79fb4fe9f84465e842e4ca61f (diff)
built-ins/Object/*: make all indentation consistent (depth & character) (#1432)
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-310.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-310.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-310.js b/test/built-ins/Object/create/15.2.3.5-4-310.js
index e61fac09d..33fb66612 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-310.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-310.js
@@ -9,13 +9,13 @@ description: >
4.b)
---*/
- var newObj = Object.create({}, {
- prop: {
- set: function () { },
- enumerable: true,
- configurable: true
- }
- });
+var newObj = Object.create({}, {
+ prop: {
+ set: function() {},
+ enumerable: true,
+ configurable: true
+ }
+});
assert(newObj.hasOwnProperty("prop"), 'newObj.hasOwnProperty("prop") !== true');
assert.sameValue(newObj.prop, undefined, 'newObj.prop');