summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-218.js
diff options
context:
space:
mode:
authorAndré Bargull <andre.bargull@gmail.com>2018-02-09 09:09:47 -0800
committerLeo Balter <leonardo.balter@gmail.com>2018-02-09 12:09:47 -0500
commitf95b56ab28c5f18150f30fbfa889a4f6ba0e50a1 (patch)
treed403f704c1b6a1842f12df380651919beaaf5fef /test/built-ins/Object/create/15.2.3.5-4-218.js
parenta01de4a722d088055a7d84d8c691ddd7109edb34 (diff)
downloadqtdeclarative-testsuites-f95b56ab28c5f18150f30fbfa889a4f6ba0e50a1.tar.gz
Revert "js-beautify: make all indentation consistent (depth & character) (#1409)" (#1412)
This reverts commit a01de4a722d088055a7d84d8c691ddd7109edb34.
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-218.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-218.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-218.js b/test/built-ins/Object/create/15.2.3.5-4-218.js
index 96b727847..64a7de9c3 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-218.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-218.js
@@ -8,14 +8,14 @@ description: >
'Properties' is a String object (8.10.5 step 6.b)
---*/
-var newObj = Object.create({}, {
- prop: {
- writable: new String()
- }
-});
-var hasProperty = newObj.hasOwnProperty("prop");
+ var newObj = Object.create({}, {
+ prop: {
+ writable: new String()
+ }
+ });
+ var hasProperty = newObj.hasOwnProperty("prop");
-newObj.prop = 121;
+ newObj.prop = 121;
assert(hasProperty, 'hasProperty !== true');
assert.sameValue(newObj.prop, 121, 'newObj.prop');