summaryrefslogtreecommitdiff
path: root/test/built-ins/Boolean/S15.6.1.1_A1_T5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Boolean/S15.6.1.1_A1_T5.js')
-rw-r--r--test/built-ins/Boolean/S15.6.1.1_A1_T5.js30
1 files changed, 15 insertions, 15 deletions
diff --git a/test/built-ins/Boolean/S15.6.1.1_A1_T5.js b/test/built-ins/Boolean/S15.6.1.1_A1_T5.js
index f465fbb22..cd1686531 100644
--- a/test/built-ins/Boolean/S15.6.1.1_A1_T5.js
+++ b/test/built-ins/Boolean/S15.6.1.1_A1_T5.js
@@ -13,41 +13,41 @@ description: Used various assigning values to any variable as argument
var x;
//CHECK#1
-if (typeof Boolean(x = 0) !== "boolean") {
- $ERROR('#1.1: typeof Boolean(x=0) should be "boolean", actual is "' + typeof Boolean(x = 0) + '"');
+if( typeof Boolean(x=0) !== "boolean" ) {
+ $ERROR('#1.1: typeof Boolean(x=0) should be "boolean", actual is "'+typeof Boolean(x=0)+'"');
}
-if (Boolean(x = 0) !== false) {
+if( Boolean(x=0) !== false ) {
$ERROR('#1.2: Boolean(x=0) should be false');
}
//CHECK#2
-if (typeof Boolean(x = 1) !== "boolean") {
- $ERROR('#2.1: typeof Boolean(x=1) should be "boolean", actual is "' + typeof Boolean(x = 1) + '"');
+if( typeof Boolean(x=1) !== "boolean" ) {
+ $ERROR('#2.1: typeof Boolean(x=1) should be "boolean", actual is "'+typeof Boolean(x=1)+'"');
}
-if (Boolean(x = 1) !== true) {
+if( Boolean(x=1) !== true ) {
$ERROR('#2.2: Boolean(x=1) should be true');
}
//CHECK#3
-if (typeof Boolean(x = false) !== "boolean") {
- $ERROR('#3.1: typeof Boolean(x=false) should be "boolean", actual is "' + typeof Boolean(x = false) + '"');
+if( typeof Boolean(x=false) !== "boolean" ) {
+ $ERROR('#3.1: typeof Boolean(x=false) should be "boolean", actual is "'+typeof Boolean(x=false)+'"');
}
-if (Boolean(x = false) !== false) {
+if( Boolean(x=false) !== false ) {
$ERROR('#3.2: Boolean(x=false) should be false');
}
//CHECK#4
-if (typeof Boolean(x = true) !== "boolean") {
- $ERROR('#4.1: typeof Boolean(x=true) should be "boolean", actual is "' + typeof Boolean(x = true) + '"');
+if( typeof Boolean(x=true) !== "boolean" ) {
+ $ERROR('#4.1: typeof Boolean(x=true) should be "boolean", actual is "'+typeof Boolean(x=true)+'"');
}
-if (Boolean(x = true) !== true) {
+if( Boolean(x=true) !== true ) {
$ERROR('#4.2: Boolean(x=true) should be true');
}
//CHECK#5
-if (typeof Boolean(x = null) !== "boolean") {
- $ERROR('#5.1: typeof Boolean(x=null) should be "boolean", actual is "' + typeof Boolean(x = null) + '"');
+if( typeof Boolean(x=null) !== "boolean" ) {
+ $ERROR('#5.1: typeof Boolean(x=null) should be "boolean", actual is "'+typeof Boolean(x=null)+'"');
}
-if (Boolean(x = null) !== false) {
+if( Boolean(x=null) !== false ) {
$ERROR('#5.2: Boolean(x=null) should be false');
}