summaryrefslogtreecommitdiff
path: root/test/built-ins/Math/pow/applying-the-exp-operator_A13.js
diff options
context:
space:
mode:
authorLeo Balter <leonardo.balter@gmail.com>2018-02-15 17:34:54 -0500
committerRick Waldron <waldron.rick@gmail.com>2018-02-15 18:04:03 -0500
commit8add0d64b226665972d8021a7a271b82c2c4ffa2 (patch)
treeadcee2ff5cdcceab8c5aa16fff128688abfe64ef /test/built-ins/Math/pow/applying-the-exp-operator_A13.js
parent7024f3fa11e7e5169c4d42fc8ee7de3e93f7de9d (diff)
downloadqtdeclarative-testsuites-8add0d64b226665972d8021a7a271b82c2c4ffa2.tar.gz
Fix whitespace
Diffstat (limited to 'test/built-ins/Math/pow/applying-the-exp-operator_A13.js')
-rw-r--r--test/built-ins/Math/pow/applying-the-exp-operator_A13.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/built-ins/Math/pow/applying-the-exp-operator_A13.js b/test/built-ins/Math/pow/applying-the-exp-operator_A13.js
index daac829f4..e05737a7d 100644
--- a/test/built-ins/Math/pow/applying-the-exp-operator_A13.js
+++ b/test/built-ins/Math/pow/applying-the-exp-operator_A13.js
@@ -14,10 +14,8 @@ exponent[1] = 111;
exponent[2] = 111111;
var exponentnum = 3;
-for (var i = 0; i < exponentnum; i++)
-{
- if (Math.pow(base, exponent[i]) !== -Infinity)
- {
+for (var i = 0; i < exponentnum; i++) {
+ if (Math.pow(base, exponent[i]) !== -Infinity) {
$ERROR("#1: Math.pow(" + base + ", " + exponent[i] + ") !== -Infinity");
}
}