| Index: chrome/browser/sync/test/integration/two_client_apps_sync_test.cc
|
| diff --git a/chrome/browser/sync/test/integration/two_client_apps_sync_test.cc b/chrome/browser/sync/test/integration/two_client_apps_sync_test.cc
|
| index d20443b067c817a876bfde4bbe70fdd0600fa337..782a63535ecf6187435cd45f78c0d5ff77e68951 100644
|
| --- a/chrome/browser/sync/test/integration/two_client_apps_sync_test.cc
|
| +++ b/chrome/browser/sync/test/integration/two_client_apps_sync_test.cc
|
| @@ -23,6 +23,7 @@ using apps_helper::IncognitoDisableApp;
|
| using apps_helper::IncognitoEnableApp;
|
| using apps_helper::InstallApp;
|
| using apps_helper::InstallAppsPendingForSync;
|
| +using apps_helper::InstallPlatformApp;
|
| using apps_helper::SetAppLaunchOrdinalForApp;
|
| using apps_helper::SetPageOrdinalForApp;
|
| using apps_helper::UninstallApp;
|
| @@ -89,6 +90,13 @@ IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, StartWithDifferentApps) {
|
| CopyNTPOrdinals(GetProfile(1), verifier(), i);
|
| }
|
|
|
| + const int kNumPlatformApps = 5;
|
| + for (int j = 0; j < kNumPlatformApps; ++i, ++j) {
|
| + InstallPlatformApp(GetProfile(1), i);
|
| + InstallPlatformApp(verifier(), i);
|
| + CopyNTPOrdinals(GetProfile(1), verifier(), i);
|
| + }
|
| +
|
| FixNTPOrdinalCollisions(verifier());
|
|
|
| ASSERT_TRUE(SetupSync());
|
|
|