summaryrefslogtreecommitdiff
path: root/test/built-ins/Boolean/prototype/S15.6.3.1_A4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Boolean/prototype/S15.6.3.1_A4.js')
-rw-r--r--test/built-ins/Boolean/prototype/S15.6.3.1_A4.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Boolean/prototype/S15.6.3.1_A4.js b/test/built-ins/Boolean/prototype/S15.6.3.1_A4.js
index 7dc740ee1..980936ebe 100644
--- a/test/built-ins/Boolean/prototype/S15.6.3.1_A4.js
+++ b/test/built-ins/Boolean/prototype/S15.6.3.1_A4.js
@@ -9,8 +9,8 @@ description: Checking if enumerating the Boolean.prototype property fails
---*/
//CHECK#1
-for (x in Boolean) {
- if (x === "prototype") {
+for(x in Boolean) {
+ if(x === "prototype") {
$ERROR('#1: Boolean.prototype has the attribute DontEnum');
}
}