summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/prototype/toString/S15.2.4.2_A8.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/prototype/toString/S15.2.4.2_A8.js')
-rw-r--r--test/built-ins/Object/prototype/toString/S15.2.4.2_A8.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Object/prototype/toString/S15.2.4.2_A8.js b/test/built-ins/Object/prototype/toString/S15.2.4.2_A8.js
index 5432ecd3b..8a38eaa0e 100644
--- a/test/built-ins/Object/prototype/toString/S15.2.4.2_A8.js
+++ b/test/built-ins/Object/prototype/toString/S15.2.4.2_A8.js
@@ -21,8 +21,8 @@ if (Object.prototype.toString.propertyIsEnumerable('length')) {
}
// CHECK#2
-for (var p in Object.prototype.toString){
- if (p==="length")
- $ERROR('#2: the Object.prototype.toString.length property has the attributes DontEnum');
+for (var p in Object.prototype.toString) {
+ if (p === "length")
+ $ERROR('#2: the Object.prototype.toString.length property has the attributes DontEnum');
}
//