summaryrefslogtreecommitdiff
path: root/test/built-ins/Math/pow/applying-the-exp-operator_A13.js
diff options
context:
space:
mode:
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");
}
}