summaryrefslogtreecommitdiff
path: root/test/built-ins/ThrowTypeError/prototype.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-15 15:41:09 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 15:41:09 -0500
commitbc70e0339f2221787f11396cfc22c6e333148914 (patch)
treeb9bc9ffdb85a6a81380ed2c48396bc99abecb640 /test/built-ins/ThrowTypeError/prototype.js
parent621d34d5eaf76fc2737307fc8e0a35090959eff5 (diff)
downloadqtdeclarative-testsuites-bc70e0339f2221787f11396cfc22c6e333148914.tar.gz
built-ins/ThrowTypeError/*: make all indentation consistent (depth & character) (#1427)
Diffstat (limited to 'test/built-ins/ThrowTypeError/prototype.js')
-rw-r--r--test/built-ins/ThrowTypeError/prototype.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/built-ins/ThrowTypeError/prototype.js b/test/built-ins/ThrowTypeError/prototype.js
index 4ad20323b..fcb92f431 100644
--- a/test/built-ins/ThrowTypeError/prototype.js
+++ b/test/built-ins/ThrowTypeError/prototype.js
@@ -19,6 +19,9 @@ info: |
...
---*/
-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.getPrototypeOf(ThrowTypeError), Function.prototype);