aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.9/15.9.3/S15.9.3.1_A1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch15/15.9/15.9.3/S15.9.3.1_A1_T1.js')
-rw-r--r--test/suite/ch15/15.9/15.9.3/S15.9.3.1_A1_T1.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/test/suite/ch15/15.9/15.9.3/S15.9.3.1_A1_T1.js b/test/suite/ch15/15.9/15.9.3/S15.9.3.1_A1_T1.js
index 629d08712..e4f2eb58d 100644
--- a/test/suite/ch15/15.9/15.9.3/S15.9.3.1_A1_T1.js
+++ b/test/suite/ch15/15.9/15.9.3/S15.9.3.1_A1_T1.js
@@ -1,13 +1,13 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * When Date is called as part of a new expression it is
- * a constructor: it initializes the newly created object
- *
- * @path ch15/15.9/15.9.3/S15.9.3.1_A1_T1.js
- * @description 2 arguments, (year, month)
- */
+/*---
+info: >
+ When Date is called as part of a new expression it is
+ a constructor: it initializes the newly created object
+description: 2 arguments, (year, month)
+includes: [$FAIL.js]
+---*/
if (typeof new Date(1899, 11) !== "object") {
$FAIL("#1.1: typeof new Date(1899, 11) should be 'object'");
@@ -224,4 +224,3 @@ var x124 = new Date(2100, 0);
if(x124 === undefined){
$FAIL("#12.4: new Date(2100, 0) should not be undefined");
}
-