diff options
Diffstat (limited to 'test/built-ins/Proxy/getOwnPropertyDescriptor/null-handler.js')
-rw-r--r-- | test/built-ins/Proxy/getOwnPropertyDescriptor/null-handler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Proxy/getOwnPropertyDescriptor/null-handler.js b/test/built-ins/Proxy/getOwnPropertyDescriptor/null-handler.js index 61a59ce02..a908e072b 100644 --- a/test/built-ins/Proxy/getOwnPropertyDescriptor/null-handler.js +++ b/test/built-ins/Proxy/getOwnPropertyDescriptor/null-handler.js @@ -11,5 +11,5 @@ var p = Proxy.revocable({}, {}); p.revoke(); assert.throws(TypeError, function() { - Object.getOwnPropertyDescriptor(p.proxy); + Object.getOwnPropertyDescriptor(p.proxy); }); |