Commit d2e65efb authored by rnephew's avatar rnephew Committed by Commit bot

[Android] Add logging to base_test_results.

BUG=615157

Review-Url: https://codereview.chromium.org/2179493002
Cr-Commit-Position: refs/heads/master@{#407169}
parent c4875316
...@@ -180,7 +180,8 @@ class TestRunResults(object): ...@@ -180,7 +180,8 @@ class TestRunResults(object):
Args: Args:
results: An instance of TestRunResults. results: An instance of TestRunResults.
""" """
assert isinstance(results, TestRunResults) assert isinstance(results, TestRunResults), (
'Expected TestRunResult object: %s' % type(results))
with self._results_lock: with self._results_lock:
# pylint: disable=W0212 # pylint: disable=W0212
self._results.update(results._results) self._results.update(results._results)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment