| Index: net/ftp/ftp_util_unittest.cc
|
| diff --git a/net/ftp/ftp_util_unittest.cc b/net/ftp/ftp_util_unittest.cc
|
| index a6f2ff019ef187b020c59ab1e81ecaf31da4f090..400d3cf723c2016bb95fd69f2ea8b8747b35c1ba 100644
|
| --- a/net/ftp/ftp_util_unittest.cc
|
| +++ b/net/ftp/ftp_util_unittest.cc
|
| @@ -175,7 +175,7 @@ TEST(FtpUtilTest, LsDateListingToTime) {
|
| UTF8ToUTF16(kTestCases[i].rest), mock_current_time, &time));
|
|
|
| base::Time::Exploded time_exploded;
|
| - time.LocalExplode(&time_exploded);
|
| + time.UTCExplode(&time_exploded);
|
| EXPECT_EQ(kTestCases[i].expected_year, time_exploded.year);
|
| EXPECT_EQ(kTestCases[i].expected_month, time_exploded.month);
|
| EXPECT_EQ(kTestCases[i].expected_day_of_month, time_exploded.day_of_month);
|
| @@ -215,7 +215,7 @@ TEST(FtpUtilTest, WindowsDateListingToTime) {
|
| &time));
|
|
|
| base::Time::Exploded time_exploded;
|
| - time.LocalExplode(&time_exploded);
|
| + time.UTCExplode(&time_exploded);
|
| EXPECT_EQ(kTestCases[i].expected_year, time_exploded.year);
|
| EXPECT_EQ(kTestCases[i].expected_month, time_exploded.month);
|
| EXPECT_EQ(kTestCases[i].expected_day_of_month, time_exploded.day_of_month);
|
|
|