| Index: components/reading_list/core/reading_list_model_unittest.cc
|
| diff --git a/components/reading_list/core/reading_list_model_unittest.cc b/components/reading_list/core/reading_list_model_unittest.cc
|
| index a2b2b57fe4634fde0e989f6a97ed6bafd7cb0e2b..ee00dc7704867272c65c90b6214457ddf3e72eee 100644
|
| --- a/components/reading_list/core/reading_list_model_unittest.cc
|
| +++ b/components/reading_list/core/reading_list_model_unittest.cc
|
| @@ -708,21 +708,6 @@
|
| entry->DistillationTime());
|
| }
|
|
|
| -// Tests setting ContentSuggestionsExtra info on entry.
|
| -TEST_F(ReadingListModelTest, UpdateContentSuggestionsExtra) {
|
| - const GURL gurl("http://example.com");
|
| - model_->AddEntry(gurl, "sample", reading_list::ADDED_VIA_CURRENT_APP);
|
| - const ReadingListEntry* entry = model_->GetEntryByURL(gurl);
|
| - ClearCounts();
|
| -
|
| - reading_list::ContentSuggestionsExtra extra;
|
| - extra.dismissed = true;
|
| -
|
| - model_->SetContentSuggestionsExtra(gurl, extra);
|
| - AssertObserverCount(0, 0, 0, 0, 0, 0, 0, 1, 1);
|
| - EXPECT_EQ(extra.dismissed, entry->ContentSuggestionsExtra()->dismissed);
|
| -}
|
| -
|
| // Tests that ReadingListModel calls CallbackModelBeingDeleted when destroyed.
|
| TEST_F(ReadingListModelTest, CallbackModelBeingDeleted) {
|
| AssertObserverCount(1, 0, 0, 0, 0, 0, 0, 0, 0);
|
|
|