| Index: net/http/http_network_transaction_unittest.cc
|
| diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc
|
| index 11141baed1981e3b42675a87480ccc7b9c7826dc..140ed3e05a501e03a8f9dcfd36cf2782eaf4c991 100644
|
| --- a/net/http/http_network_transaction_unittest.cc
|
| +++ b/net/http/http_network_transaction_unittest.cc
|
| @@ -7611,7 +7611,7 @@ TEST_P(HttpNetworkTransactionTest, UploadFileSmallerThanLength) {
|
| EXPECT_EQ(OK, rv);
|
| EXPECT_EQ("hello world", response_data);
|
|
|
| - base::Delete(temp_file_path, false);
|
| + base::DeleteFile(temp_file_path, false);
|
| }
|
|
|
| TEST_P(HttpNetworkTransactionTest, UploadUnreadableFile) {
|
| @@ -7671,7 +7671,7 @@ TEST_P(HttpNetworkTransactionTest, UploadUnreadableFile) {
|
| EXPECT_TRUE(response->headers.get() != NULL);
|
| EXPECT_EQ("HTTP/1.0 200 OK", response->headers->GetStatusLine());
|
|
|
| - base::Delete(temp_file, false);
|
| + base::DeleteFile(temp_file, false);
|
| }
|
|
|
| TEST_P(HttpNetworkTransactionTest, UnreadableUploadFileAfterAuthRestart) {
|
| @@ -7762,7 +7762,7 @@ TEST_P(HttpNetworkTransactionTest, UnreadableUploadFileAfterAuthRestart) {
|
| EXPECT_TRUE(response->auth_challenge.get() == NULL);
|
| EXPECT_EQ("HTTP/1.1 200 OK", response->headers->GetStatusLine());
|
|
|
| - base::Delete(temp_file, false);
|
| + base::DeleteFile(temp_file, false);
|
| }
|
|
|
| // Tests that changes to Auth realms are treated like auth rejections.
|
|
|