summaryrefslogtreecommitdiff
path: root/test/built-ins/Number/prototype/valueOf/S15.7.4.4_A1_T01.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Number/prototype/valueOf/S15.7.4.4_A1_T01.js')
-rw-r--r--test/built-ins/Number/prototype/valueOf/S15.7.4.4_A1_T01.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/built-ins/Number/prototype/valueOf/S15.7.4.4_A1_T01.js b/test/built-ins/Number/prototype/valueOf/S15.7.4.4_A1_T01.js
index 1345810ac..0bb16d143 100644
--- a/test/built-ins/Number/prototype/valueOf/S15.7.4.4_A1_T01.js
+++ b/test/built-ins/Number/prototype/valueOf/S15.7.4.4_A1_T01.js
@@ -8,27 +8,27 @@ description: Call without argument
---*/
//CHECK#1
-if(Number.prototype.valueOf() !== 0){
+if (Number.prototype.valueOf() !== 0) {
$ERROR('#1: Number.prototype.valueOf() === 0');
}
//CHECK#2
-if((new Number()).valueOf() !== 0){
+if ((new Number()).valueOf() !== 0) {
$ERROR('#2: (new Number()).valueOf() === 0');
}
//CHECK#3
-if((new Number(0)).valueOf() !== 0){
+if ((new Number(0)).valueOf() !== 0) {
$ERROR('#3: (new Number(0)).valueOf() === 0');
}
//CHECK#4
-if((new Number(-1)).valueOf() !== -1){
+if ((new Number(-1)).valueOf() !== -1) {
$ERROR('#4: (new Number(-1)).valueOf() === -1');
}
//CHECK#5
-if((new Number(1)).valueOf() !== 1){
+if ((new Number(1)).valueOf() !== 1) {
$ERROR('#5: (new Number(1)).valueOf() === 1');
}
@@ -40,11 +40,11 @@ assert.sameValue(
);
//CHECK#7
-if((new Number(Number.POSITIVE_INFINITY)).valueOf() !== Number.POSITIVE_INFINITY){
+if ((new Number(Number.POSITIVE_INFINITY)).valueOf() !== Number.POSITIVE_INFINITY) {
$ERROR('#7: (new Number(Number.POSITIVE_INFINITY)).valueOf() === Infinity');
}
//CHECK#8
-if((new Number(Number.NEGATIVE_INFINITY)).valueOf() !== Number.NEGATIVE_INFINITY){
+if ((new Number(Number.NEGATIVE_INFINITY)).valueOf() !== Number.NEGATIVE_INFINITY) {
$ERROR('#8: (new Number(Number.NEGATIVE_INFINITY)).valueOf() === -Infinity');
}