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

Unified Diff: base/test/test_support_ios.mm

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years 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: base/test/test_support_ios.mm
diff --git a/base/test/test_support_ios.mm b/base/test/test_support_ios.mm
index 2509fa0e7307b078d7df913351fea1ce1995faf2..b606f4c7a2dc67edc755328f0ce8e896dccda24e 100644
--- a/base/test/test_support_ios.mm
+++ b/base/test/test_support_ios.mm
@@ -111,7 +111,8 @@ static char** g_argv;
NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask,
YES);
- CHECK([searchPath count] > 0) << "Failed to get the Documents folder";
+ // Failed to get the Documents folder
+ CHECK([searchPath count] > 0);
return [searchPath objectAtIndex:0];
}

Powered by Google App Engine
This is Rietveld 408576698