| Index: base/file_util_proxy_unittest.cc
|
| diff --git a/base/file_util_proxy_unittest.cc b/base/file_util_proxy_unittest.cc
|
| index 402385a82e7843221ecb123cefc61e30ab94040c..42856c470314c8ed5bb8ddbddfff637631d0c376 100644
|
| --- a/base/file_util_proxy_unittest.cc
|
| +++ b/base/file_util_proxy_unittest.cc
|
| @@ -216,6 +216,9 @@ TEST_F(FileUtilProxyTest, CreateTemporary) {
|
| std::string data;
|
| EXPECT_TRUE(file_util::ReadFileToString(path_, &data));
|
| EXPECT_EQ("test", data);
|
| +
|
| + // Make sure we can & do delete the created file to prevent leaks on the bots.
|
| + EXPECT_TRUE(file_util::Delete(path_, false));
|
| }
|
|
|
| TEST_F(FileUtilProxyTest, GetFileInfo_File) {
|
|
|