summaryrefslogtreecommitdiff
path: root/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js')
-rw-r--r--test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js
index 689f82e5d..a49fed1ef 100644
--- a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js
+++ b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js
@@ -11,7 +11,7 @@ if (Date.prototype.propertyIsEnumerable('getDate')) {
$ERROR('#1: The Date.prototype.getDate property has the attribute DontEnum');
}
-for(x in Date.prototype) {
+for(var x in Date.prototype) {
if(x === "getDate") {
$ERROR('#2: The Date.prototype.getDate has the attribute DontEnum');
}