summaryrefslogtreecommitdiff
path: root/test/built-ins/Boolean/S15.6.2.1_A1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Boolean/S15.6.2.1_A1.js')
-rw-r--r--test/built-ins/Boolean/S15.6.2.1_A1.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Boolean/S15.6.2.1_A1.js b/test/built-ins/Boolean/S15.6.2.1_A1.js
index 787b6a1c7..fc5d516d5 100644
--- a/test/built-ins/Boolean/S15.6.2.1_A1.js
+++ b/test/built-ins/Boolean/S15.6.2.1_A1.js
@@ -22,13 +22,13 @@ if (new Boolean() === undefined) {
//CHECK#3
var x3 = new Boolean();
-if(typeof x3 !== "object"){
+if (typeof x3 !== "object") {
$ERROR("#3: typeof new Boolean() !== 'object'");
}
//CHECK#4
var x4 = new Boolean();
-if(x4 === undefined){
+if (x4 === undefined) {
$ERROR("#4: new Boolean() should not be undefined");
}
@@ -44,12 +44,12 @@ if (new Boolean(1) === undefined) {
//CHECK#7
var x7 = new Boolean(1);
-if(typeof x7 !== "object"){
+if (typeof x7 !== "object") {
$ERROR("#7: typeof new Boolean(1) !== 'object'");
}
//CHECK#8
var x8 = new Boolean(1);
-if(x8 === undefined){
+if (x8 === undefined) {
$ERROR("#8: new Boolean(1) should not be undefined");
}