summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/setPrototypeOf/null-handler.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/setPrototypeOf/null-handler.js')
-rw-r--r--test/built-ins/Proxy/setPrototypeOf/null-handler.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Proxy/setPrototypeOf/null-handler.js b/test/built-ins/Proxy/setPrototypeOf/null-handler.js
index 4d4a7a6b6..8a78bc965 100644
--- a/test/built-ins/Proxy/setPrototypeOf/null-handler.js
+++ b/test/built-ins/Proxy/setPrototypeOf/null-handler.js
@@ -6,10 +6,10 @@ description: >
Throws a TypeError exception if handler is null
---*/
-var p = Proxy.revocable({},{});
+var p = Proxy.revocable({}, {});
p.revoke();
assert.throws(TypeError, function() {
- Object.setPrototypeOf(p.proxy, {});
+ Object.setPrototypeOf(p.proxy, {});
});