summaryrefslogtreecommitdiff
path: root/test/built-ins/Math/pow/applying-the-exp-operator_A5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Math/pow/applying-the-exp-operator_A5.js')
-rw-r--r--test/built-ins/Math/pow/applying-the-exp-operator_A5.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/built-ins/Math/pow/applying-the-exp-operator_A5.js b/test/built-ins/Math/pow/applying-the-exp-operator_A5.js
index 1d8fa231a..52c56b49c 100644
--- a/test/built-ins/Math/pow/applying-the-exp-operator_A5.js
+++ b/test/built-ins/Math/pow/applying-the-exp-operator_A5.js
@@ -17,10 +17,8 @@ base[4] = 1.7976931348623157E308; //largest finite number
base[5] = +Infinity;
var basenum = 6;
-for (var i = 0; i < basenum; i++)
-{
- if (Math.pow(base[i], exponent) !== +Infinity)
- {
+for (var i = 0; i < basenum; i++) {
+ if (Math.pow(base[i], exponent) !== +Infinity) {
$ERROR("#1: Math.pow(" + base[i] + ", " + exponent + ") !== +Infinity");
}
}