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

Unified Diff: ui/aura/test/aura_test_helper.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: ui/aura/test/aura_test_helper.cc
diff --git a/ui/aura/test/aura_test_helper.cc b/ui/aura/test/aura_test_helper.cc
index 2fdddc08c29f94649685cdf5cfe27e38977888d9..df2a6a2f50ffe93a1a566b52a73e2c6a6db1dec6 100644
--- a/ui/aura/test/aura_test_helper.cc
+++ b/ui/aura/test/aura_test_helper.cc
@@ -52,10 +52,10 @@ AuraTestHelper::AuraTestHelper(base::MessageLoopForUI* message_loop)
}
AuraTestHelper::~AuraTestHelper() {
- CHECK(setup_called_)
- << "AuraTestHelper::SetUp() never called.";
- CHECK(teardown_called_)
- << "AuraTestHelper::TearDown() never called.";
+ // AuraTestHelper::SetUp() never called.
+ CHECK(setup_called_);
+ // AuraTestHelper::TearDown() never called.
+ CHECK(teardown_called_);
}
void AuraTestHelper::EnableMusWithTestWindowTree(

Powered by Google App Engine
This is Rietveld 408576698