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

Unified Diff: base/process/process_util_unittest.cc

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/process/process_util_unittest.cc
diff --git a/base/process/process_util_unittest.cc b/base/process/process_util_unittest.cc
index 87fdd0123097e51739a2bc1830e34f584302fdc8..9447ca6b8cb1b969958fec3ec26b3e74d0150206 100644
--- a/base/process/process_util_unittest.cc
+++ b/base/process/process_util_unittest.cc
@@ -221,8 +221,7 @@ MULTIPROCESS_TEST_MAIN(CheckCwdProcess) {
actual = MakeAbsoluteFilePath(actual);
CHECK(!actual.empty());
- CHECK(expected == actual) << "Expected: " << expected.value()
- << " Actual: " << actual.value();
+ CHECK(expected == actual);
return kSuccess;
}

Powered by Google App Engine
This is Rietveld 408576698