| Index: components/offline_pages/core/downloads/download_notifying_observer_unittest.cc
|
| diff --git a/components/offline_pages/core/downloads/download_notifying_observer_unittest.cc b/components/offline_pages/core/downloads/download_notifying_observer_unittest.cc
|
| index 6db87708702286214aeeb9cd393658b01052247f..48af1b047b1642efb47a5adbafdab9638857fa56 100644
|
| --- a/components/offline_pages/core/downloads/download_notifying_observer_unittest.cc
|
| +++ b/components/offline_pages/core/downloads/download_notifying_observer_unittest.cc
|
| @@ -211,8 +211,8 @@ TEST_F(DownloadNotifyingObserverTest, OnCompletedSuccess) {
|
| TEST_F(DownloadNotifyingObserverTest, OnCompletedCanceled) {
|
| SavePageRequest request(kTestOfflineId, GURL(kTestUrl), kTestClientId,
|
| kTestCreationTime, kTestUserRequested);
|
| - observer()->OnCompleted(request,
|
| - RequestNotifier::BackgroundSavePageResult::REMOVED);
|
| + observer()->OnCompleted(
|
| + request, RequestNotifier::BackgroundSavePageResult::USER_CANCELED);
|
| EXPECT_EQ(LastNotificationType::DOWNLOAD_CANCELED,
|
| notifier()->last_notification_type());
|
| EXPECT_EQ(kTestGuid, notifier()->download_item()->guid);
|
|
|