summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/deleteProperty/null-handler.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/deleteProperty/null-handler.js')
-rw-r--r--test/built-ins/Proxy/deleteProperty/null-handler.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Proxy/deleteProperty/null-handler.js b/test/built-ins/Proxy/deleteProperty/null-handler.js
index 1b280f79e..ddc6c8d8a 100644
--- a/test/built-ins/Proxy/deleteProperty/null-handler.js
+++ b/test/built-ins/Proxy/deleteProperty/null-handler.js
@@ -9,11 +9,11 @@ description: >
---*/
var p = Proxy.revocable({
- attr: 1
+ attr: 1
}, {});
p.revoke();
assert.throws(TypeError, function() {
- delete p.proxy.attr;
+ delete p.proxy.attr;
});