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

Unified Diff: sync/internal_api/sync_manager_impl_unittest.cc

Issue 13721002: Add a space between string literals and PRIuS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 8 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: sync/internal_api/sync_manager_impl_unittest.cc
diff --git a/sync/internal_api/sync_manager_impl_unittest.cc b/sync/internal_api/sync_manager_impl_unittest.cc
index 9a6ddee6e9b34c0f79334292137f7f5d6f55df15..5c596e0fe30faab0e3f1d18fdf60e06348da1be6 100644
--- a/sync/internal_api/sync_manager_impl_unittest.cc
+++ b/sync/internal_api/sync_manager_impl_unittest.cc
@@ -1557,12 +1557,12 @@ TEST_F(SyncManagerTest, EncryptDataTypesWithData) {
// Next batch_size nodes are a different type and on their own.
for (; i < 2*batch_size; ++i) {
MakeNode(sync_manager_.GetUserShare(), SESSIONS,
- base::StringPrintf("%"PRIuS"", i));
+ base::StringPrintf("%" PRIuS "", i));
}
// Last batch_size nodes are a third type that will not need encryption.
for (; i < 3*batch_size; ++i) {
MakeNode(sync_manager_.GetUserShare(), THEMES,
- base::StringPrintf("%"PRIuS"", i));
+ base::StringPrintf("%" PRIuS "", i));
}
{

Powered by Google App Engine
This is Rietveld 408576698