| Index: chrome/browser/sync/test/integration/sync_exponential_backoff_test.cc
|
| diff --git a/chrome/browser/sync/test/integration/sync_exponential_backoff_test.cc b/chrome/browser/sync/test/integration/sync_exponential_backoff_test.cc
|
| index c10fe57a69c4c0d50bbe1b6f9bc5b37a6e5b677e..16e5a092741d454c56c1e4c50777a46d02f1e6a0 100644
|
| --- a/chrome/browser/sync/test/integration/sync_exponential_backoff_test.cc
|
| +++ b/chrome/browser/sync/test/integration/sync_exponential_backoff_test.cc
|
| @@ -62,7 +62,7 @@ IN_PROC_BROWSER_TEST_F(SyncExponentialBackoffTest, OfflineToOnline) {
|
|
|
| // Add an item and ensure that sync is successful.
|
| ASSERT_TRUE(AddFolder(0, 0, L"folder1"));
|
| - ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion());
|
| + ASSERT_TRUE(GetClient(0)->AwaitCommitActivityCompletion());
|
|
|
| // Trigger a network error at the client side.
|
| DisableNetwork(GetProfile(0));
|
| @@ -80,7 +80,7 @@ IN_PROC_BROWSER_TEST_F(SyncExponentialBackoffTest, OfflineToOnline) {
|
| EnableNetwork(GetProfile(0));
|
|
|
| // Verify that sync was able to recover.
|
| - ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion());
|
| + ASSERT_TRUE(GetClient(0)->AwaitCommitActivityCompletion());
|
| ASSERT_TRUE(ModelMatchesVerifier(0));
|
| }
|
|
|
| @@ -89,7 +89,7 @@ IN_PROC_BROWSER_TEST_F(SyncExponentialBackoffTest, TransientErrorTest) {
|
|
|
| // Add an item and ensure that sync is successful.
|
| ASSERT_TRUE(AddFolder(0, 0, L"folder1"));
|
| - ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion());
|
| + ASSERT_TRUE(GetClient(0)->AwaitCommitActivityCompletion());
|
|
|
| // Trigger a transient error on the server.
|
| TriggerTransientError();
|
|
|