aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/Proxy/construct/null-handler.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/construct/null-handler.js')
-rw-r--r--test/built-ins/Proxy/construct/null-handler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Proxy/construct/null-handler.js b/test/built-ins/Proxy/construct/null-handler.js
index 3c6032161..816d04d4f 100644
--- a/test/built-ins/Proxy/construct/null-handler.js
+++ b/test/built-ins/Proxy/construct/null-handler.js
@@ -14,5 +14,5 @@ var p = Proxy.revocable(function() {}, {});
p.revoke();
assert.throws(TypeError, function() {
- new p.proxy();
+ new p.proxy();
});