| Index: content/browser/download/download_item_impl_unittest.cc
|
| diff --git a/content/browser/download/download_item_impl_unittest.cc b/content/browser/download/download_item_impl_unittest.cc
|
| index 42c1761af7c14667c1225726c64ed550e3b9d69c..6958a00fd4801299a2267aa8a9f2d80f788c9e8f 100644
|
| --- a/content/browser/download/download_item_impl_unittest.cc
|
| +++ b/content/browser/download/download_item_impl_unittest.cc
|
| @@ -576,9 +576,9 @@ TEST_F(DownloadItemTest, Canceled) {
|
| TEST_F(DownloadItemTest, FileRemoved) {
|
| DownloadItem* item = CreateDownloadItem(DownloadItem::IN_PROGRESS);
|
|
|
| - EXPECT_EQ(false, item->GetFileExternallyRemoved());
|
| + EXPECT_FALSE(item->GetFileExternallyRemoved());
|
| item->OnDownloadedFileRemoved();
|
| - EXPECT_EQ(true, item->GetFileExternallyRemoved());
|
| + EXPECT_TRUE(item->GetFileExternallyRemoved());
|
| }
|
|
|
| TEST(MockDownloadItem, Compiles) {
|
|
|