| Index: net/ftp/ftp_directory_listing_parser_mlsd_unittest.cc
|
| diff --git a/net/ftp/ftp_directory_listing_parser_mlsd_unittest.cc b/net/ftp/ftp_directory_listing_parser_mlsd_unittest.cc
|
| index 1a01f27f3e5667e10362acb0021640d86c1514df..f65abc20feda4338caa494109a38d5de8a33808b 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_mlsd_unittest.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_mlsd_unittest.cc
|
| @@ -14,9 +14,6 @@ namespace {
|
| typedef net::FtpDirectoryListingParserTest FtpDirectoryListingParserMlsdTest;
|
|
|
| TEST_F(FtpDirectoryListingParserMlsdTest, Good) {
|
| - base::Time::Exploded now_exploded;
|
| - base::Time::Now().LocalExplode(&now_exploded);
|
| -
|
| const struct SingleLineTestData good_cases[] = {
|
| { "type=file;size=380565;modify=20030606190749; README",
|
| net::FtpDirectoryListingEntry::FILE, "README", 380565,
|
| @@ -48,6 +45,7 @@ TEST_F(FtpDirectoryListingParserMlsdTest, Bad) {
|
| ";",
|
| "; ",
|
| " ;",
|
| + " foo",
|
| "garbage",
|
| "total 5",
|
| "type=file;size=380565;modify=20030606190749;README",
|
|
|