Index: chrome/browser/sync/test/integration/sync_app_list_helper.cc |
diff --git a/chrome/browser/sync/test/integration/sync_app_list_helper.cc b/chrome/browser/sync/test/integration/sync_app_list_helper.cc |
index 1ae254309a93a33ce2f9b23877c088b73e50be3b..2a6855a028d29c00f9849ba77bb9dbae0dfa5e1e 100644 |
--- a/chrome/browser/sync/test/integration/sync_app_list_helper.cc |
+++ b/chrome/browser/sync/test/integration/sync_app_list_helper.cc |
@@ -54,13 +54,8 @@ bool SyncAppListHelper::AppListMatchesVerifier(Profile* profile) { |
AppListSyncableServiceFactory::GetForProfile(profile); |
AppListSyncableService* verifier = |
AppListSyncableServiceFactory::GetForProfile(test_->verifier()); |
- if (service->GetNumSyncItemsForTest() != |
- verifier->GetNumSyncItemsForTest()) { |
- LOG(ERROR) << "Sync item count: " |
- << service->GetNumSyncItemsForTest() |
- << " != " << verifier->GetNumSyncItemsForTest(); |
- return false; |
- } |
+ // Note: sync item entries may not exist in verifier, but item lists should |
+ // match. |
if (service->model()->item_list()->item_count() != |
verifier->model()->item_list()->item_count()) { |
LOG(ERROR) << "Model item count: " |