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

Unified Diff: build/android/pylib/local/device/local_device_test_run_test.py

Issue 2933993002: Add local results details pages.
Patch Set: Add --local-output arg which enables local results detail pages. Created 3 years, 6 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: build/android/pylib/local/device/local_device_test_run_test.py
diff --git a/build/android/pylib/local/device/local_device_test_run_test.py b/build/android/pylib/local/device/local_device_test_run_test.py
index ace70ad1a08da82b1a9bc8f6b036d62d60beef04..33274c860eb2f6484bb89640b08b4ed1e60ba035 100755
--- a/build/android/pylib/local/device/local_device_test_run_test.py
+++ b/build/android/pylib/local/device/local_device_test_run_test.py
@@ -49,7 +49,7 @@ class TestLocalDeviceTestRun(local_device_test_run.LocalDeviceTestRun):
def __init__(self):
super(TestLocalDeviceTestRun, self).__init__(
- mock.MagicMock(), mock.MagicMock())
+ mock.MagicMock(), mock.MagicMock(), mock.MagicMock())
class TestLocalDeviceNonStringTestRun(
@@ -59,7 +59,7 @@ class TestLocalDeviceNonStringTestRun(
def __init__(self):
super(TestLocalDeviceNonStringTestRun, self).__init__(
- mock.MagicMock(), mock.MagicMock())
+ mock.MagicMock(), mock.MagicMock(), mock.MagicMock())
def _GetUniqueTestName(self, test):
return test['name']

Powered by Google App Engine
This is Rietveld 408576698