Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Unified Diff: components/ntp_snippets/content_suggestions_service_unittest.cc

Issue 2663313002: 📰 Merge the has_fetch_more and has_reload actions (Closed)
Patch Set: fix tests pt 2 Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/ntp_snippets/content_suggestions_service_unittest.cc
diff --git a/components/ntp_snippets/content_suggestions_service_unittest.cc b/components/ntp_snippets/content_suggestions_service_unittest.cc
index 29ddca3131eeb5b4c20a730d89ff42334d8340ea..0ada92024430a7ee67ee19aecc7f4513f5f3be37 100644
--- a/components/ntp_snippets/content_suggestions_service_unittest.cc
+++ b/components/ntp_snippets/content_suggestions_service_unittest.cc
@@ -433,8 +433,7 @@ TEST_F(ContentSuggestionsServiceTest, ShouldReturnCategoryInfo) {
const CategoryInfo& actual = result.value();
EXPECT_THAT(expected.title(), Eq(actual.title()));
EXPECT_THAT(expected.card_layout(), Eq(actual.card_layout()));
- EXPECT_THAT(expected.has_more_action(), Eq(actual.has_more_action()));
- EXPECT_THAT(expected.has_reload_action(), Eq(actual.has_reload_action()));
+ EXPECT_THAT(expected.has_fetch_action(), Eq(actual.has_fetch_action()));
EXPECT_THAT(expected.has_view_all_action(), Eq(actual.has_view_all_action()));
}

Powered by Google App Engine
This is Rietveld 408576698