Chromium Code Reviews| Index: build/android/pylib/instrumentation/test_result.py |
| diff --git a/build/android/pylib/instrumentation/test_result.py b/build/android/pylib/instrumentation/test_result.py |
| index b365df75302a46ca385cba2ad6c8fd1d4155accd..e2dd10102a1d3aa2186c1451e3addac37e3bfbed 100644 |
| --- a/build/android/pylib/instrumentation/test_result.py |
| +++ b/build/android/pylib/instrumentation/test_result.py |
| @@ -28,7 +28,10 @@ class InstrumentationTestResult(base_test_result.BaseTestResult): |
| self._class_name = full_name |
| self._test_name = full_name |
| self._start_date = start_date |
| - self._tombstones = None |
|
jbudorick
2016/08/17 04:14:30
I think this should stay None. Write an empty stri
BigBossZhiling
2016/08/17 23:20:03
Done.
|
| + self._tombstones = '' |
| def SetTombstones(self, tombstones): |
| self._tombstones = tombstones |
| + |
| + def GetTombstones(self): |
| + return self._tombstones |