diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2018-02-09 11:35:37 -0500 |
---|---|---|
committer | Leo Balter <leonardo.balter@gmail.com> | 2018-02-09 11:35:37 -0500 |
commit | a01de4a722d088055a7d84d8c691ddd7109edb34 (patch) | |
tree | f583c8efd40a3b699261f1166da75a9861d83e7b /test/built-ins/Object/defineProperties/15.2.3.7-5-b-71.js | |
parent | 7b01f9799f99851955f23c18c12e6651c1941022 (diff) | |
download | qtdeclarative-testsuites-a01de4a722d088055a7d84d8c691ddd7109edb34.tar.gz |
js-beautify: make all indentation consistent (depth & character) (#1409)
Diffstat (limited to 'test/built-ins/Object/defineProperties/15.2.3.7-5-b-71.js')
-rw-r--r-- | test/built-ins/Object/defineProperties/15.2.3.7-5-b-71.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Object/defineProperties/15.2.3.7-5-b-71.js b/test/built-ins/Object/defineProperties/15.2.3.7-5-b-71.js index 47b64cb93..58905fa9e 100644 --- a/test/built-ins/Object/defineProperties/15.2.3.7-5-b-71.js +++ b/test/built-ins/Object/defineProperties/15.2.3.7-5-b-71.js @@ -14,15 +14,15 @@ var obj = {}; var proto = {}; Object.defineProperty(proto, "configurable", { - set: function () { } + set: function() {} }); -var Con = function () { }; +var Con = function() {}; Con.prototype = proto; var descObj = new Con(); Object.defineProperties(obj, { - prop: descObj + prop: descObj }); assert(obj.hasOwnProperty("prop")); |