aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/Proxy/has/return-true-target-prop-exists.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-15 15:11:36 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 15:11:36 -0500
commit4fd36e7f1dea239e80db672cfe2eaaf28c7f035f (patch)
tree9c5bc27ed2fbe75f45c13b8457b1895360a58e53 /test/built-ins/Proxy/has/return-true-target-prop-exists.js
parent133dfa8793c3e66c3b1e540e6b1894f1356e19ee (diff)
built-ins/Proxy/*: make all indentation consistent (depth & character) (#1434)
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);