summaryrefslogtreecommitdiff
path: root/test/built-ins/eval/length-enumerable.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/eval/length-enumerable.js')
-rw-r--r--test/built-ins/eval/length-enumerable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/eval/length-enumerable.js b/test/built-ins/eval/length-enumerable.js
index 4cc4fb6a8..97ac7252c 100644
--- a/test/built-ins/eval/length-enumerable.js
+++ b/test/built-ins/eval/length-enumerable.js
@@ -16,7 +16,7 @@ if (eval.propertyIsEnumerable('length') !== false) {
//CHECK#2
var result = true;
-for (p in eval){
+for (p in eval) {
if (p === "length") {
result = false;
}