| Index: components/offline_pages/core/background/request_coordinator_unittest.cc
|
| diff --git a/components/offline_pages/core/background/request_coordinator_unittest.cc b/components/offline_pages/core/background/request_coordinator_unittest.cc
|
| index d75650186fc7b18f18971a84b26fdafe8b53dc72..9291c1841ddc5130d5c00ab40afe2b49646acdc0 100644
|
| --- a/components/offline_pages/core/background/request_coordinator_unittest.cc
|
| +++ b/components/offline_pages/core/background/request_coordinator_unittest.cc
|
| @@ -1105,7 +1105,7 @@ TEST_F(RequestCoordinatorTest, MarkRequestCompleted) {
|
| coordinator()->MarkRequestCompleted(request_id);
|
| PumpLoop();
|
|
|
| - // Our observer should have seen SUCCESS instead of REMOVED.
|
| + // Our observer should have seen SUCCESS instead of USER_CANCELED.
|
| EXPECT_EQ(RequestCoordinator::BackgroundSavePageResult::SUCCESS,
|
| observer().last_status());
|
| EXPECT_TRUE(observer().completed_called());
|
| @@ -1359,7 +1359,7 @@ TEST_F(RequestCoordinatorTest, RemoveRequest) {
|
| PumpLoop();
|
|
|
| EXPECT_TRUE(observer().completed_called());
|
| - EXPECT_EQ(RequestCoordinator::BackgroundSavePageResult::REMOVED,
|
| + EXPECT_EQ(RequestCoordinator::BackgroundSavePageResult::USER_CANCELED,
|
| observer().last_status());
|
| EXPECT_EQ(1UL, last_remove_results().size());
|
| EXPECT_EQ(kRequestId1, std::get<0>(last_remove_results().at(0)));
|
|
|