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

Unified Diff: telemetry/telemetry/value/trace_unittest.py

Issue 2661573003: Refactor TraceData to encapsulate internal traces' representation (Closed)
Patch Set: Created 3 years, 11 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
Index: telemetry/telemetry/value/trace_unittest.py
diff --git a/telemetry/telemetry/value/trace_unittest.py b/telemetry/telemetry/value/trace_unittest.py
index 47f0e8b3a5d22bdbcdc4980e0a93461c08a834ae..be0da0566c0a6faae20a6f7877e1d5894b484bb8 100644
--- a/telemetry/telemetry/value/trace_unittest.py
+++ b/telemetry/telemetry/value/trace_unittest.py
@@ -140,7 +140,6 @@ class ValueTest(TestBase):
for f in trace_files:
with open(f, 'r') as trace_file:
d = trace_file.read()
- print d
if d == raw_data['powerTraceAsString']:
self.assertFalse(battor_seen)
battor_seen = True
@@ -158,7 +157,6 @@ class ValueTest(TestBase):
os.remove(v.filename)
-
def _IsEmptyDir(path):
return os.path.exists(path) and not os.listdir(path)

Powered by Google App Engine
This is Rietveld 408576698