summaryrefslogtreecommitdiff
path: root/test/built-ins/Math/pow/applying-the-exp-operator_A3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Math/pow/applying-the-exp-operator_A3.js')
-rw-r--r--test/built-ins/Math/pow/applying-the-exp-operator_A3.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/built-ins/Math/pow/applying-the-exp-operator_A3.js b/test/built-ins/Math/pow/applying-the-exp-operator_A3.js
index 7fa5ecc46..65c6d86bb 100644
--- a/test/built-ins/Math/pow/applying-the-exp-operator_A3.js
+++ b/test/built-ins/Math/pow/applying-the-exp-operator_A3.js
@@ -20,10 +20,8 @@ base[7] = +Infinity;
base[8] = NaN;
var basenum = 9;
-for (var i = 0; i < basenum; i++)
-{
- if (Math.pow(base[i], exponent) !== 1)
- {
+for (var i = 0; i < basenum; i++) {
+ if (Math.pow(base[i], exponent) !== 1) {
$ERROR("#1: Math.pow(" + base[i] + ", -0) !== 1");
}
}