summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js')
-rw-r--r--test/built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js b/test/built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js
index c6ca59a13..20ae2d490 100644
--- a/test/built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js
+++ b/test/built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js
@@ -11,9 +11,9 @@ features: [Reflect]
var target = {};
var handler = {
- set: function(t, prop, value, receiver) {
- return null;
- }
+ set: function(t, prop, value, receiver) {
+ return null;
+ }
};
var p = new Proxy(target, handler);