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

Unified Diff: components/ntp_snippets/remote/remote_suggestions_fetcher_unittest.cc

Issue 2718453002: ntp_snippets: default to staging API on dev/canary (Closed)
Patch Set: Created 3 years, 10 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/remote/remote_suggestions_fetcher_unittest.cc
diff --git a/components/ntp_snippets/remote/remote_suggestions_fetcher_unittest.cc b/components/ntp_snippets/remote/remote_suggestions_fetcher_unittest.cc
index a75bcfe0a4bdb6e52fdcfcf5e5c24ebd72178b82..12d2032cac654a84f5f2fdba434f303e3db8dcfb 100644
--- a/components/ntp_snippets/remote/remote_suggestions_fetcher_unittest.cc
+++ b/components/ntp_snippets/remote/remote_suggestions_fetcher_unittest.cc
@@ -302,7 +302,8 @@ class RemoteSuggestionsFetcherTestBase : public testing::Test {
fetcher_ = base::MakeUnique<RemoteSuggestionsFetcher>(
utils_.fake_signin_manager(), fake_token_service_.get(),
std::move(request_context_getter), utils_.pref_service(), nullptr,
- base::Bind(&ParseJsonDelayed), kAPIKey, user_classifier_.get());
+ base::Bind(&ParseJsonDelayed), GetFetchEndpoint(true), kAPIKey,
jkrcal 2017/02/23 13:25:22 nit: could you please add /*is_stable_or_beta_chan
sfiera 2017/02/23 13:28:47 Done.
+ user_classifier_.get());
fetcher_->SetClockForTesting(mock_task_runner_->GetMockClock());
}

Powered by Google App Engine
This is Rietveld 408576698