Chromium Code Reviews| Index: test/intl/date-format/parse-MMMdy.js |
| diff --git a/test/intl/date-format/parse-MMMdy.js b/test/intl/date-format/parse-MMMdy.js |
| index 7136527810e61b65b8ad50c7e8750a6be0fe1718..73ee5867335b0f6a21e3c53c8a59a49cb1f84ce2 100644 |
| --- a/test/intl/date-format/parse-MMMdy.js |
| +++ b/test/intl/date-format/parse-MMMdy.js |
| @@ -30,19 +30,22 @@ |
| var dtf = new Intl.DateTimeFormat(['en'], |
| {year: 'numeric', month: 'short', |
| - day: 'numeric'}); |
| + day: 'numeric', |
| + timeZone: 'America/Los_Angeles'}); |
| // Make sure we have pattern we expect (may change in the future). |
| assertEquals('MMM d, y', dtf.resolved.pattern); |
| -assertEquals('Sat May 04 1974 00:00:00 GMT-0007 (PDT)', |
| - usePDT(String(dtf.v8Parse('May 4, 1974')))); |
| +var date = dtf.v8Parse('Feb 4, 1974'); |
| +assertEquals(1974, date.getFullYear()); |
|
mnita
2013/10/08 20:04:41
Should we go with UTC fields, for consistency?
|
| +assertEquals(1, date.getMonth()); |
| +assertEquals(4, date.getDate()); |
| // Missing , in the pattern. |
| -assertEquals(undefined, dtf.v8Parse('May 4 1974')); |
| +assertEquals(undefined, dtf.v8Parse('Feb 4 1974')); |
| // Extra "th" after 4 in the pattern. |
| -assertEquals(undefined, dtf.v8Parse('May 4th, 1974')); |
| +assertEquals(undefined, dtf.v8Parse('Feb 4th, 1974')); |
| // Wrong pattern. |
| -assertEquals(undefined, dtf.v8Parse('5/4/1974')); |
| +assertEquals(undefined, dtf.v8Parse('2/4/1974')); |