summaryrefslogtreecommitdiffstats
path: root/tools/run-bisect-manual-test.py
diff options
context:
space:
mode:
authorwolenetz <wolenetz@chromium.org>2015-08-04 14:51:48 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-04 21:56:21 +0000
commit484640e764696a186910f6174ad1b666cd8509b4 (patch)
treeb05a333ed0758b15ef94c8b5c8008a03c0b55db1 /tools/run-bisect-manual-test.py
parent3ea56ee9e4a6bf3e692ff9924781da9fab716b6a (diff)
downloadchromium_src-484640e764696a186910f6174ad1b666cd8509b4.zip
chromium_src-484640e764696a186910f6174ad1b666cd8509b4.tar.gz
chromium_src-484640e764696a186910f6174ad1b666cd8509b4.tar.bz2
Fix browser import locations in bisect-manual-test scripts
Updates the imports to reference the new locations for browser_finder and browser_options in telemetry.internal.browser. BUG=516812 TEST=manual Review URL: https://codereview.chromium.org/1260403005 Cr-Commit-Position: refs/heads/master@{#341806}
Diffstat (limited to 'tools/run-bisect-manual-test.py')
-rwxr-xr-xtools/run-bisect-manual-test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run-bisect-manual-test.py b/tools/run-bisect-manual-test.py
index 2631a86..94a2141 100755
--- a/tools/run-bisect-manual-test.py
+++ b/tools/run-bisect-manual-test.py
@@ -29,7 +29,7 @@ _BISECT_SCRIPT_PATH = os.path.join(
_TOOLS_DIR, 'auto_bisect', 'bisect_perf_regression.py')
sys.path.append(os.path.join(_TOOLS_DIR, 'telemetry'))
-from telemetry.core import browser_options
+from telemetry.internal.browser import browser_options
def _RunBisectionScript(options):