summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/set/return-true-target-property-is-not-configurable.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/set/return-true-target-property-is-not-configurable.js')
-rw-r--r--test/built-ins/Proxy/set/return-true-target-property-is-not-configurable.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Proxy/set/return-true-target-property-is-not-configurable.js b/test/built-ins/Proxy/set/return-true-target-property-is-not-configurable.js
index 730ecafe1..0bd1f6328 100644
--- a/test/built-ins/Proxy/set/return-true-target-property-is-not-configurable.js
+++ b/test/built-ins/Proxy/set/return-true-target-property-is-not-configurable.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: false,
- writable: true,
- value: 'foo'
+ configurable: false,
+ writable: true,
+ value: 'foo'
});
assert(Reflect.set(p, "attr", 1));