summaryrefslogtreecommitdiff
path: root/test/built-ins/ThrowTypeError/distinct-cross-realm.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/ThrowTypeError/distinct-cross-realm.js')
-rw-r--r--test/built-ins/ThrowTypeError/distinct-cross-realm.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/built-ins/ThrowTypeError/distinct-cross-realm.js b/test/built-ins/ThrowTypeError/distinct-cross-realm.js
index b25660179..3fb412296 100644
--- a/test/built-ins/ThrowTypeError/distinct-cross-realm.js
+++ b/test/built-ins/ThrowTypeError/distinct-cross-realm.js
@@ -13,10 +13,7 @@ features: [cross-realm]
---*/
var other = $262.createRealm().global;
-var localArgs = function() {
- "use strict";
- return arguments;
-}();
+var localArgs = function(){ "use strict"; return arguments; }();
var otherArgs = (new other.Function('return arguments;'))();
var localThrowTypeError = Object.getOwnPropertyDescriptor(localArgs, "callee").get;
var otherThrowTypeError = Object.getOwnPropertyDescriptor(otherArgs, "callee").get;