aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/Proxy/has/return-true-target-prop-exists.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/has/return-true-target-prop-exists.js')
-rw-r--r--test/built-ins/Proxy/has/return-true-target-prop-exists.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Proxy/has/return-true-target-prop-exists.js b/test/built-ins/Proxy/has/return-true-target-prop-exists.js
index 9c5a409da..187ef0030 100644
--- a/test/built-ins/Proxy/has/return-true-target-prop-exists.js
+++ b/test/built-ins/Proxy/has/return-true-target-prop-exists.js
@@ -8,12 +8,12 @@ description: >
---*/
var target = {
- attr: 1
+ attr: 1
};
var p = new Proxy(target, {
- has: function(t, prop) {
- return 1;
- }
+ has: function(t, prop) {
+ return 1;
+ }
});
assert.sameValue(("attr" in p), true);