summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-15 15:11:36 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 15:11:36 -0500
commit4fd36e7f1dea239e80db672cfe2eaaf28c7f035f (patch)
tree9c5bc27ed2fbe75f45c13b8457b1895360a58e53 /test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js
parent133dfa8793c3e66c3b1e540e6b1894f1356e19ee (diff)
downloadqtdeclarative-testsuites-4fd36e7f1dea239e80db672cfe2eaaf28c7f035f.tar.gz
built-ins/Proxy/*: make all indentation consistent (depth & character) (#1434)
Diffstat (limited to 'test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js')
-rw-r--r--test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js b/test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js
index a6bfeef4c..ce9fd5886 100644
--- a/test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js
+++ b/test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js
@@ -22,9 +22,9 @@ info: |
var target = {};
var p = new Proxy(target, {
- getOwnPropertyDescriptor: {}
+ getOwnPropertyDescriptor: {}
});
assert.throws(TypeError, function() {
- Object.getOwnPropertyDescriptor(p, "foo");
+ Object.getOwnPropertyDescriptor(p, "foo");
});