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

Unified Diff: tests/Time.cpp

Issue 1733113002: Unit Tests: eliminate stray SkDebugf()s. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « tests/Test.h ('k') | tests/WArrayTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/Time.cpp
diff --git a/tests/Time.cpp b/tests/Time.cpp
index cf4f80f9dae588a36cf54fe7bd5f7421a5c8d5db..f6bf9ff3f5904bd3f876e92555b3f51688592bc3 100644
--- a/tests/Time.cpp
+++ b/tests/Time.cpp
@@ -49,8 +49,6 @@ DEF_TEST(Time_GetDateTime, r) {
SkString timeStamp;
dateTime.toISO8601(&timeStamp);
REPORTER_ASSERT(r, timeStamp.size() > 0);
- if (r->verbose()) { // `dm --veryVerbose`
- SkDebugf("\nCurrent Time (ISO-8601 format): \"%s\"\n",
- timeStamp.c_str());
- }
+ INFOF(r, "\nCurrent Time (ISO-8601 format): \"%s\"\n",
+ timeStamp.c_str());
}
« no previous file with comments | « tests/Test.h ('k') | tests/WArrayTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698