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

Unified Diff: au_test_harness/dummy_au_worker.py

Issue 6857004: Clean up extreme verbosity of logs in test harness. (Closed) Base URL: http://git.chromium.org/git/crostestutils.git@master
Patch Set: Last patch Created 9 years, 8 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 | « au_test_harness/cros_au_test_harness.py ('k') | au_test_harness/parallel_test_job.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: au_test_harness/dummy_au_worker.py
diff --git a/au_test_harness/dummy_au_worker.py b/au_test_harness/dummy_au_worker.py
index fa1bee042a5b37b9d3889fff6b2d9ffa7cf82860..178d79d3bdcdedc99e393093b6676d0770894bc6 100644
--- a/au_test_harness/dummy_au_worker.py
+++ b/au_test_harness/dummy_au_worker.py
@@ -6,6 +6,8 @@
import unittest
+import cros_build_lib as cros_lib
+
import au_worker
class DummyAUWorker(au_worker.AUWorker):
@@ -19,7 +21,7 @@ class DummyAUWorker(au_worker.AUWorker):
delta_list = {}
def __init__(self, options, test_results_root):
- au_worker.AUWorker.__init__(self, options, test_results_root)
+ super(DummyAUWorker, self).__init__(options, test_results_root)
self.au_type = options.type
def PrepareBase(self, image_path):
« no previous file with comments | « au_test_harness/cros_au_test_harness.py ('k') | au_test_harness/parallel_test_job.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698