| Index: test/intl/date-format/parse-mdy.js
|
| diff --git a/test/intl/date-format/parse-mdy.js b/test/intl/date-format/parse-mdy.js
|
| index 788a7bbd08cd196797fb387e08c4b82325cced58..7b1a79af8604b5d50bc0edc327269011365f3aed 100644
|
| --- a/test/intl/date-format/parse-mdy.js
|
| +++ b/test/intl/date-format/parse-mdy.js
|
| @@ -28,9 +28,9 @@
|
| // Testing v8Parse method for date only.
|
|
|
| function checkDate(date) {
|
| - assertEquals(1974, date.getFullYear());
|
| - assertEquals(1, date.getMonth());
|
| - assertEquals(4, date.getDate());
|
| + assertEquals(1974, date.getUTCFullYear());
|
| + assertEquals(1, date.getUTCMonth());
|
| + assertEquals(4, date.getUTCDate());
|
| }
|
|
|
| var dtf = new Intl.DateTimeFormat(['en'], {timeZone: 'America/Los_Angeles'});
|
|
|