summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/has/trap-is-not-callable.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/has/trap-is-not-callable.js')
-rw-r--r--test/built-ins/Proxy/has/trap-is-not-callable.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Proxy/has/trap-is-not-callable.js b/test/built-ins/Proxy/has/trap-is-not-callable.js
index 712419824..63f494357 100644
--- a/test/built-ins/Proxy/has/trap-is-not-callable.js
+++ b/test/built-ins/Proxy/has/trap-is-not-callable.js
@@ -19,9 +19,9 @@ info: |
var target = {};
var p = new Proxy(target, {
- has: {}
+ has: {}
});
assert.throws(TypeError, function() {
- "attr" in p;
+ "attr" in p;
});