aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/Proxy/getPrototypeOf/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/getPrototypeOf/trap-is-not-callable.js
parent133dfa8793c3e66c3b1e540e6b1894f1356e19ee (diff)
built-ins/Proxy/*: make all indentation consistent (depth & character) (#1434)
Diffstat (limited to 'test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js')
-rw-r--r--test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js b/test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js
index e6335e46a..3920ee73d 100644
--- a/test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js
+++ b/test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js
@@ -7,9 +7,9 @@ description: >
---*/
var p = new Proxy({}, {
- getPrototypeOf: {}
+ getPrototypeOf: {}
});
assert.throws(TypeError, function() {
- Object.getPrototypeOf(p);
+ Object.getPrototypeOf(p);
});