summaryrefslogtreecommitdiff
path: root/test/built-ins/ThrowTypeError/name.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/ThrowTypeError/name.js')
-rw-r--r--test/built-ins/ThrowTypeError/name.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/built-ins/ThrowTypeError/name.js b/test/built-ins/ThrowTypeError/name.js
index d894ee12f..d2cb287c3 100644
--- a/test/built-ins/ThrowTypeError/name.js
+++ b/test/built-ins/ThrowTypeError/name.js
@@ -12,9 +12,6 @@ info: |
object that is defined once for each Realm.
---*/
-var ThrowTypeError = Object.getOwnPropertyDescriptor(function() {
- "use strict";
- return arguments;
-}(), "callee").get;
+var ThrowTypeError = Object.getOwnPropertyDescriptor(function(){ "use strict"; return arguments; }(), "callee").get;
assert.sameValue(Object.prototype.hasOwnProperty.call(ThrowTypeError, "name"), false);