aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js
diff options
context:
space:
mode:
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);
});