aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Time.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2016-02-24 17:59:16 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-24 17:59:16 -0800
commit7d57124a2a9ed7b271568fb75b3cfd949fdb313a (patch)
tree34a0d37411771ccceb3dc4537a19c8360e1f5cfb /tests/Time.cpp
parent8e9f5e39d774198a5a5d9345bc9f863e855c593b (diff)
Unit Tests: eliminate stray SkDebugf()s.
Diffstat (limited to 'tests/Time.cpp')
-rw-r--r--tests/Time.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/Time.cpp b/tests/Time.cpp
index cf4f80f9da..f6bf9ff3f5 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());
}