summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.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/prototype/hasOwnProperty/8.12.1-1_15.js
parentdedd68020b222fe79fb4fe9f84465e842e4ca61f (diff)
downloadqtdeclarative-testsuites-a61b9cd671f3378c4078c0a58dd8b8be073f8cef.tar.gz
built-ins/Object/*: make all indentation consistent (depth & character) (#1432)
Diffstat (limited to 'test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js')
-rw-r--r--test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js
index 54baa8f1a..5086fe3bd 100644
--- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js
+++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js
@@ -8,8 +8,11 @@ description: >
non-enumerable inherited value property)
---*/
- var base = {};
- Object.defineProperty(base, "foo", {value: 42, writable:true});
- var o = Object.create(base);
+var base = {};
+Object.defineProperty(base, "foo", {
+ value: 42,
+ writable: true
+});
+var o = Object.create(base);
assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")');