summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/construct/return-is-abrupt.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/construct/return-is-abrupt.js')
-rw-r--r--test/built-ins/Proxy/construct/return-is-abrupt.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Proxy/construct/return-is-abrupt.js b/test/built-ins/Proxy/construct/return-is-abrupt.js
index de42204fd..c0d41aa4e 100644
--- a/test/built-ins/Proxy/construct/return-is-abrupt.js
+++ b/test/built-ins/Proxy/construct/return-is-abrupt.js
@@ -13,11 +13,11 @@ info: |
function Target() {}
var P = new Proxy(Target, {
- construct: function() {
- throw new Test262Error();
- }
+ construct: function() {
+ throw new Test262Error();
+ }
});
assert.throws(Test262Error, function() {
- new P();
+ new P();
});