summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/revocable/proxy.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/revocable/proxy.js')
-rw-r--r--test/built-ins/Proxy/revocable/proxy.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Proxy/revocable/proxy.js b/test/built-ins/Proxy/revocable/proxy.js
index b08d73c2e..32d4c27cd 100644
--- a/test/built-ins/Proxy/revocable/proxy.js
+++ b/test/built-ins/Proxy/revocable/proxy.js
@@ -12,12 +12,12 @@ info: |
---*/
var target = {
- attr: "foo"
+ attr: "foo"
};
var r = Proxy.revocable(target, {
- get: function(t, prop) {
- return t[prop] + "!";
- }
+ get: function(t, prop) {
+ return t[prop] + "!";
+ }
});
assert.sameValue(r.proxy.attr, "foo!");