summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.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/target-property-is-not-configurable-not-writable-not-equal-to-v.js
parent133dfa8793c3e66c3b1e540e6b1894f1356e19ee (diff)
downloadqtdeclarative-testsuites-4fd36e7f1dea239e80db672cfe2eaaf28c7f035f.tar.gz
built-ins/Proxy/*: make all indentation consistent (depth & character) (#1434)
Diffstat (limited to 'test/built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.js')
-rw-r--r--test/built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.js b/test/built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.js
index 3e46bc33d..9bfd14990 100644
--- a/test/built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.js
+++ b/test/built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.js
@@ -17,22 +17,22 @@ info: |
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: false,
- value: 'foo'
+ configurable: false,
+ writable: false,
+ value: 'foo'
});
assert.throws(TypeError, function() {
- p.attr = 'bar';
+ p.attr = 'bar';
});
assert.throws(TypeError, function() {
- p['attr'] = 'bar';
+ p['attr'] = 'bar';
});