Index: build/android/pylib/base/test_run.py |
diff --git a/build/android/pylib/base/test_run.py b/build/android/pylib/base/test_run.py |
index 9b16f890f69cb99b4cca62cbb7f7937c648fe294..eaf86ed8823a65fb6d01cb82f53cd700bd82a89e 100644 |
--- a/build/android/pylib/base/test_run.py |
+++ b/build/android/pylib/base/test_run.py |
@@ -14,9 +14,10 @@ class TestRun(object): |
- local instrumentation tests |
""" |
- def __init__(self, env, test_instance): |
+ def __init__(self, env, test_instance, test_output_saver): |
self._env = env |
self._test_instance = test_instance |
+ self._test_output_saver = test_output_saver |
jbudorick
2017/06/20 14:12:54
Can you explain why this is in the test run rather
mikecase (-- gone --)
2017/07/10 17:11:10
Well, I think test_runs are really the things savi
|
def TestPackage(self): |
raise NotImplementedError |