summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/set/return-true-target-property-is-not-writable.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/set/return-true-target-property-is-not-writable.js')
-rw-r--r--test/built-ins/Proxy/set/return-true-target-property-is-not-writable.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Proxy/set/return-true-target-property-is-not-writable.js b/test/built-ins/Proxy/set/return-true-target-property-is-not-writable.js
index 3fd7a5a95..314d164ef 100644
--- a/test/built-ins/Proxy/set/return-true-target-property-is-not-writable.js
+++ b/test/built-ins/Proxy/set/return-true-target-property-is-not-writable.js
@@ -12,16 +12,16 @@ features: [Reflect]
var target = {};
var handler = {
- set: function(t, prop, value, receiver) {
- return true;
- }
+ set: function(t, prop, value, receiver) {
+ return true;
+ }
};
var p = new Proxy(target, handler);
Object.defineProperty(target, "attr", {
- configurable: true,
- writable: false,
- value: "foo"
+ configurable: true,
+ writable: false,
+ value: "foo"
});
assert(Reflect.set(p, "attr", "foo"));