diff options
author | frankf@google.com <frankf@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-08 19:08:45 +0000 |
---|---|---|
committer | frankf@google.com <frankf@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-08 19:08:45 +0000 |
commit | 4f54223dcfeade1bbc2055e942349073d130c497 (patch) | |
tree | fcbea1581e4e674c5ba3a737926e38112f1104ea | |
parent | 4624de3c49d26fea125418ebb30c66d9bb9c9f53 (diff) | |
download | chromium_src-4f54223dcfeade1bbc2055e942349073d130c497.zip chromium_src-4f54223dcfeade1bbc2055e942349073d130c497.tar.gz chromium_src-4f54223dcfeade1bbc2055e942349073d130c497.tar.bz2 |
[Android] Fix import of test_options_parser in run_monkey_test.py
BUG=
Review URL: https://codereview.chromium.org/11806004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175572 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | build/android/run_monkey_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/run_monkey_test.py b/build/android/run_monkey_test.py index f27426e..22a9ee1 100755 --- a/build/android/run_monkey_test.py +++ b/build/android/run_monkey_test.py @@ -11,10 +11,10 @@ import sys import time from pylib import android_commands -from pylib import test_options_parser from pylib import test_result from pylib.host_driven import python_test_base from pylib.host_driven import python_test_sharder +from pylib.utils import test_options_parser class MonkeyTest(python_test_base.PythonTestBase): |