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