| Index: net/ftp/ftp_directory_listing_parser_unittest.h
|
| diff --git a/net/ftp/ftp_directory_listing_parser_unittest.h b/net/ftp/ftp_directory_listing_parser_unittest.h
|
| index 3cbe17ad2d607a05d923893ffe0de77c872a570c..e6938ba3a3a76033c692ff95cdc3bd553828e036 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_unittest.h
|
| +++ b/net/ftp/ftp_directory_listing_parser_unittest.h
|
| @@ -68,7 +68,11 @@ class FtpDirectoryListingParserTest : public testing::Test {
|
| mock_current_time_exploded.day_of_month = 15;
|
| mock_current_time_exploded.hour = 12;
|
| mock_current_time_exploded.minute = 45;
|
| - return base::Time::FromLocalExploded(mock_current_time_exploded);
|
| +
|
| + base::Time out_time;
|
| + EXPECT_TRUE(
|
| + base::Time::FromLocalExploded(mock_current_time_exploded, &out_time));
|
| + return out_time;
|
| }
|
| };
|
|
|
|
|