aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/Proxy/set/return-is-abrupt.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/set/return-is-abrupt.js
parent133dfa8793c3e66c3b1e540e6b1894f1356e19ee (diff)
built-ins/Proxy/*: make all indentation consistent (depth & character) (#1434)
Diffstat (limited to 'test/built-ins/Proxy/set/return-is-abrupt.js')
-rw-r--r--test/built-ins/Proxy/set/return-is-abrupt.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Proxy/set/return-is-abrupt.js b/test/built-ins/Proxy/set/return-is-abrupt.js
index 1da66bbda..6f6ee2b25 100644
--- a/test/built-ins/Proxy/set/return-is-abrupt.js
+++ b/test/built-ins/Proxy/set/return-is-abrupt.js
@@ -14,15 +14,15 @@ info: |
---*/
var p = new Proxy({}, {
- set: function(t, prop, value, receiver) {
- throw new Test262Error();
- }
+ set: function(t, prop, value, receiver) {
+ throw new Test262Error();
+ }
});
assert.throws(Test262Error, function() {
- p.attr = "bar";
+ p.attr = "bar";
});
assert.throws(Test262Error, function() {
- p["attr"] = "bar";
+ p["attr"] = "bar";
});