summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/has/return-is-abrupt-with.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/has/return-is-abrupt-with.js')
-rw-r--r--test/built-ins/Proxy/has/return-is-abrupt-with.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Proxy/has/return-is-abrupt-with.js b/test/built-ins/Proxy/has/return-is-abrupt-with.js
index 46824ac2d..e4ff88601 100644
--- a/test/built-ins/Proxy/has/return-is-abrupt-with.js
+++ b/test/built-ins/Proxy/has/return-is-abrupt-with.js
@@ -15,13 +15,13 @@ flags: [noStrict]
---*/
var p = new Proxy({}, {
- has: function() {
- throw new Test262Error();
- }
+ has: function() {
+ throw new Test262Error();
+ }
});
assert.throws(Test262Error, function() {
- with (p) {
- (attr);
- }
+ with(p) {
+ (attr);
+ }
});