summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/set/trap-is-not-callable.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/set/trap-is-not-callable.js')
-rw-r--r--test/built-ins/Proxy/set/trap-is-not-callable.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Proxy/set/trap-is-not-callable.js b/test/built-ins/Proxy/set/trap-is-not-callable.js
index cd3622d7c..1aef3ff16 100644
--- a/test/built-ins/Proxy/set/trap-is-not-callable.js
+++ b/test/built-ins/Proxy/set/trap-is-not-callable.js
@@ -16,13 +16,13 @@ info: |
---*/
var p = new Proxy({}, {
- set: {}
+ set: {}
});
assert.throws(TypeError, function() {
- p.attr = 1;
+ p.attr = 1;
});
assert.throws(TypeError, function() {
- p["attr"] = 1;
+ p["attr"] = 1;
});