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

Unified Diff: base/test/test_io_thread.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/test/test_io_thread.cc
diff --git a/base/test/test_io_thread.cc b/base/test/test_io_thread.cc
index ce4a8d10de27c74fdd9942c51c6c08811b2568ef..8f18879f9210d2d81739ad6523259e24df45b1f2 100644
--- a/base/test/test_io_thread.cc
+++ b/base/test/test_io_thread.cc
@@ -17,7 +17,8 @@ TestIOThread::TestIOThread(Mode mode)
case kManualStart:
return;
}
- CHECK(false) << "Invalid mode";
+ // Invalid mode
+ CHECK(false);
}
TestIOThread::~TestIOThread() {

Powered by Google App Engine
This is Rietveld 408576698