summaryrefslogtreecommitdiff
path: root/test/built-ins/Number/prototype/toString/S15.7.4.2_A2_T03.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Number/prototype/toString/S15.7.4.2_A2_T03.js')
-rw-r--r--test/built-ins/Number/prototype/toString/S15.7.4.2_A2_T03.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/built-ins/Number/prototype/toString/S15.7.4.2_A2_T03.js b/test/built-ins/Number/prototype/toString/S15.7.4.2_A2_T03.js
index e6f6d98f8..33979bd07 100644
--- a/test/built-ins/Number/prototype/toString/S15.7.4.2_A2_T03.js
+++ b/test/built-ins/Number/prototype/toString/S15.7.4.2_A2_T03.js
@@ -10,41 +10,41 @@ description: radix is 4
---*/
//CHECK#1
-if (Number.prototype.toString(4) !== "0") {
+if(Number.prototype.toString(4) !== "0"){
$ERROR('#1: Number.prototype.toString(4) === "0"');
}
//CHECK#2
-if ((new Number()).toString(4) !== "0") {
+if((new Number()).toString(4) !== "0"){
$ERROR('#2: (new Number()).toString(4) === "0"');
}
//CHECK#3
-if ((new Number(0)).toString(4) !== "0") {
+if((new Number(0)).toString(4) !== "0"){
$ERROR('#3: (new Number(0)).toString(4) === "0"');
}
//CHECK#4
-if ((new Number(-1)).toString(4) !== "-1") {
+if((new Number(-1)).toString(4) !== "-1"){
$ERROR('#4: (new Number(-1)).toString(4) === "-1"');
}
//CHECK#5
-if ((new Number(1)).toString(4) !== "1") {
+if((new Number(1)).toString(4) !== "1"){
$ERROR('#5: (new Number(1)).toString(4) === "1"');
}
//CHECK#6
-if ((new Number(Number.NaN)).toString(4) !== "NaN") {
+if((new Number(Number.NaN)).toString(4) !== "NaN"){
$ERROR('#6: (new Number(Number.NaN)).toString(4) === "NaN"');
}
//CHECK#7
-if ((new Number(Number.POSITIVE_INFINITY)).toString(4) !== "Infinity") {
+if((new Number(Number.POSITIVE_INFINITY)).toString(4) !== "Infinity"){
$ERROR('#7: (new Number(Number.POSITIVE_INFINITY)).toString(4) === "Infinity"');
}
//CHECK#8
-if ((new Number(Number.NEGATIVE_INFINITY)).toString(4) !== "-Infinity") {
+if((new Number(Number.NEGATIVE_INFINITY)).toString(4) !== "-Infinity"){
$ERROR('#8: (new Number(Number.NEGATIVE_INFINITY)).toString(4) === "-Infinity"');
}