summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsw <msw@chromium.org>2015-05-14 12:38:54 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-14 19:39:07 +0000
commit0ea4042ae9068d847f6044fcfd5b43a1ae71ef79 (patch)
tree3e4edf712519df11210b4e27f582a57cda64c018
parentf44179f9d15cc019ffb235a936771c91db56e1ad (diff)
downloadchromium_src-0ea4042ae9068d847f6044fcfd5b43a1ae71ef79.zip
chromium_src-0ea4042ae9068d847f6044fcfd5b43a1ae71ef79.tar.gz
chromium_src-0ea4042ae9068d847f6044fcfd5b43a1ae71ef79.tar.bz2
Remove obsolete Android script StartShell argument.
I meant to remove this in https://codereview.chromium.org/1138933004 BUG=486220 TEST=Android apptest runner doesn't crash with argument error. TBR=sky@chromium.org Review URL: https://codereview.chromium.org/1124103008 Cr-Commit-Position: refs/heads/master@{#329898}
-rw-r--r--mojo/tools/mopy/test_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mojo/tools/mopy/test_util.py b/mojo/tools/mopy/test_util.py
index 4a4c128..cb8886a4 100644
--- a/mojo/tools/mopy/test_util.py
+++ b/mojo/tools/mopy/test_util.py
@@ -55,7 +55,7 @@ def run_test_android(shell, shell_args, apps_and_args):
_logger.debug("Starting shell with arguments: %s" % arguments)
start_time = time.time()
# TODO(vtl): Do more logging in lower layers.
- shell.StartShell(arguments, wf, wf.close, False)
+ shell.StartShell(arguments, wf, wf.close)
rv = rf.read()
run_time = time.time() - start_time
_logger.debug("Shell completed")