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

Unified Diff: chrome/browser/sync/test/integration/single_client_app_list_sync_test.cc

Issue 1851243002: [Sync] Eliminate verifier profile from sync_integration_tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: do not remove AwaitQuiescence() Created 4 years, 9 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: chrome/browser/sync/test/integration/single_client_app_list_sync_test.cc
diff --git a/chrome/browser/sync/test/integration/single_client_app_list_sync_test.cc b/chrome/browser/sync/test/integration/single_client_app_list_sync_test.cc
index 274c2a1fc599a4e45dd155180369ee48f4ab4bb6..efa247b69e450b092129e2eadd8346b8096e871b 100644
--- a/chrome/browser/sync/test/integration/single_client_app_list_sync_test.cc
+++ b/chrome/browser/sync/test/integration/single_client_app_list_sync_test.cc
@@ -21,9 +21,8 @@ namespace {
const size_t kNumDefaultApps = 2;
-bool AllProfilesHaveSameAppListAsVerifier() {
- return SyncAppListHelper::GetInstance()->
- AllProfilesHaveSameAppListAsVerifier();
+bool AllProfilesHaveSameAppList() {
+ return SyncAppListHelper::GetInstance()->AllProfilesHaveSameAppList();
}
} // namespace
@@ -57,7 +56,7 @@ class SingleClientAppListSyncTest : public SyncTest {
IN_PROC_BROWSER_TEST_F(SingleClientAppListSyncTest, AppListEmpty) {
ASSERT_TRUE(SetupSync());
- ASSERT_TRUE(AllProfilesHaveSameAppListAsVerifier());
+ ASSERT_TRUE(AllProfilesHaveSameAppList());
}
IN_PROC_BROWSER_TEST_F(SingleClientAppListSyncTest, AppListSomeApps) {
@@ -74,6 +73,6 @@ IN_PROC_BROWSER_TEST_F(SingleClientAppListSyncTest, AppListSomeApps) {
ASSERT_EQ(kNumApps + kNumDefaultApps, service->GetNumSyncItemsForTest());
ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService((0))));
- ASSERT_TRUE(AllProfilesHaveSameAppListAsVerifier());
+ ASSERT_TRUE(AllProfilesHaveSameAppList());
}

Powered by Google App Engine
This is Rietveld 408576698