| Index: build/android/pylib/utils/report_results.py
|
| diff --git a/build/android/pylib/utils/report_results.py b/build/android/pylib/utils/report_results.py
|
| index 2668145e34b19cf2d2bace1ce995a602e2b0a967..68b9cebe30f18ebc12123c60b5e0c64a8e4d1f33 100644
|
| --- a/build/android/pylib/utils/report_results.py
|
| +++ b/build/android/pylib/utils/report_results.py
|
| @@ -10,7 +10,7 @@ import re
|
|
|
| from pylib import constants
|
|
|
| -import flakiness_dashboard_results_uploader
|
| +from . import flakiness_dashboard_results_uploader
|
|
|
|
|
| def _LogToFile(results, test_type, suite_name):
|
| @@ -47,11 +47,11 @@ def _LogToFlakinessDashboard(results, test_type, test_package,
|
|
|
| try:
|
| if flakiness_server == constants.UPSTREAM_FLAKINESS_SERVER:
|
| - assert test_package in ['ContentShellTest',
|
| - 'ChromiumTestShellTest',
|
| - 'AndroidWebViewTest']
|
| - dashboard_test_type = ('%s_instrumentation_tests' %
|
| - test_package.lower().rstrip('test'))
|
| + assert test_package in ['ContentShellTest',
|
| + 'ChromiumTestShellTest',
|
| + 'AndroidWebViewTest']
|
| + dashboard_test_type = ('%s_instrumentation_tests' %
|
| + test_package.lower().rstrip('test'))
|
| # Downstream server.
|
| else:
|
| dashboard_test_type = 'Chromium_Android_Instrumentation'
|
|
|