Chromium Code Reviews| Index: chrome/browser/safe_browsing/download_protection_service_unittest.cc |
| diff --git a/chrome/browser/safe_browsing/download_protection_service_unittest.cc b/chrome/browser/safe_browsing/download_protection_service_unittest.cc |
| index 8ae03fb89f6deff95311715705399fa64b4cd0ac..8785fa0a749b601b2dbe7e27059cceb090203933 100644 |
| --- a/chrome/browser/safe_browsing/download_protection_service_unittest.cc |
| +++ b/chrome/browser/safe_browsing/download_protection_service_unittest.cc |
| @@ -565,6 +565,8 @@ void DownloadProtectionServiceTest::CheckClientDownloadReportCorruptZip( |
| Mock::VerifyAndClearExpectations(sb_service_.get()); |
| Mock::VerifyAndClearExpectations(binary_feature_extractor_.get()); |
| + |
| + base::DeleteFile(tmp_path_, false); |
|
asanka
2016/05/17 14:51:56
This won't be executed if any of the ASSERT_*s fai
|
| } |
| @@ -1201,6 +1203,8 @@ TEST_F(DownloadProtectionServiceTest, CheckClientDownloadZip) { |
| GetClientDownloadRequest()->download_type()); |
| ClearClientDownloadRequest(); |
| Mock::VerifyAndClearExpectations(binary_feature_extractor_.get()); |
| + |
| + base::DeleteFile(tmp_path_, false); |
| } |
| TEST_F(DownloadProtectionServiceTest, |