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

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

Issue 2389063002: [Sync] Fixing easy lint violations. (Closed)
Patch Set: Updated for Max's comments. Created 4 years, 2 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/two_client_extension_settings_and_app_settings_sync_test.cc
diff --git a/chrome/browser/sync/test/integration/two_client_extension_settings_and_app_settings_sync_test.cc b/chrome/browser/sync/test/integration/two_client_extension_settings_and_app_settings_sync_test.cc
index e6d8a98a83a9f92083732f5d96fd7f2bd4867a3b..7b3eaf3063125fccf517438288f319c034165978 100644
--- a/chrome/browser/sync/test/integration/two_client_extension_settings_and_app_settings_sync_test.cc
+++ b/chrome/browser/sync/test/integration/two_client_extension_settings_and_app_settings_sync_test.cc
@@ -25,7 +25,7 @@ using sync_datatype_helper::test;
// unfortuately we can't test existing configurations of the sync server since
// the tests don't support that.
void MutateSomeSettings(
- int seed, // used to modify the mutation values, not keys.
+ int seed, // used to modify the mutation values, not keys.
const std::string& extension0,
const std::string& extension1,
const std::string& extension2) {
@@ -182,41 +182,31 @@ testing::AssertionResult StartWithDifferentSettingsTest(
IN_PROC_BROWSER_TEST_F(TwoClientExtensionSettingsAndAppSettingsSyncTest,
ExtensionsStartWithSameSettings) {
ASSERT_TRUE(SetupClients());
- ASSERT_PRED3(StartWithSameSettingsTest,
- InstallExtensionForAllProfiles(0),
- InstallExtensionForAllProfiles(1),
- InstallExtensionForAllProfiles(2)
- );
+ ASSERT_PRED3(StartWithSameSettingsTest, InstallExtensionForAllProfiles(0),
+ InstallExtensionForAllProfiles(1),
+ InstallExtensionForAllProfiles(2));
}
IN_PROC_BROWSER_TEST_F(TwoClientExtensionSettingsAndAppSettingsSyncTest,
AppsStartWithSameSettings) {
ASSERT_TRUE(SetupClients());
- ASSERT_PRED3(StartWithSameSettingsTest,
- InstallAppForAllProfiles(0),
- InstallAppForAllProfiles(1),
- InstallAppForAllProfiles(2)
- );
+ ASSERT_PRED3(StartWithSameSettingsTest, InstallAppForAllProfiles(0),
+ InstallAppForAllProfiles(1), InstallAppForAllProfiles(2));
}
IN_PROC_BROWSER_TEST_F(TwoClientExtensionSettingsAndAppSettingsSyncTest,
ExtensionsStartWithDifferentSettings) {
ASSERT_TRUE(SetupClients());
- ASSERT_PRED3(StartWithDifferentSettingsTest,
- InstallExtensionForAllProfiles(0),
- InstallExtensionForAllProfiles(1),
- InstallExtensionForAllProfiles(2)
- );
+ ASSERT_PRED3(
+ StartWithDifferentSettingsTest, InstallExtensionForAllProfiles(0),
+ InstallExtensionForAllProfiles(1), InstallExtensionForAllProfiles(2));
}
IN_PROC_BROWSER_TEST_F(TwoClientExtensionSettingsAndAppSettingsSyncTest,
AppsStartWithDifferentSettings) {
ASSERT_TRUE(SetupClients());
- ASSERT_PRED3(StartWithDifferentSettingsTest,
- InstallAppForAllProfiles(0),
- InstallAppForAllProfiles(1),
- InstallAppForAllProfiles(2)
- );
+ ASSERT_PRED3(StartWithDifferentSettingsTest, InstallAppForAllProfiles(0),
+ InstallAppForAllProfiles(1), InstallAppForAllProfiles(2));
}
} // namespace
« no previous file with comments | « chrome/browser/sync/test/integration/sync_arc_package_helper.cc ('k') | components/sync/api/conflict_resolution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698