summaryrefslogtreecommitdiff
path: root/test/built-ins/Date/prototype/getFullYear/S15.9.5.10_A3_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Date/prototype/getFullYear/S15.9.5.10_A3_T3.js')
-rw-r--r--test/built-ins/Date/prototype/getFullYear/S15.9.5.10_A3_T3.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Date/prototype/getFullYear/S15.9.5.10_A3_T3.js b/test/built-ins/Date/prototype/getFullYear/S15.9.5.10_A3_T3.js
index 7fedce52a..36e66960f 100644
--- a/test/built-ins/Date/prototype/getFullYear/S15.9.5.10_A3_T3.js
+++ b/test/built-ins/Date/prototype/getFullYear/S15.9.5.10_A3_T3.js
@@ -14,8 +14,8 @@ if (Date.prototype.getFullYear.propertyIsEnumerable('length')) {
$ERROR('#1: The Date.prototype.getFullYear.length property has the attribute DontEnum');
}
-for (var x in Date.prototype.getFullYear) {
- if (x === "length") {
+for(var x in Date.prototype.getFullYear) {
+ if(x === "length") {
$ERROR('#2: The Date.prototype.getFullYear.length has the attribute DontEnum');
}
}