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

Unified Diff: mojo/devtools/common/devtoolslib/apptest.py

Issue 1268713005: Unify method name casing in devtools. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 4 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: mojo/devtools/common/devtoolslib/apptest.py
diff --git a/mojo/devtools/common/devtoolslib/apptest.py b/mojo/devtools/common/devtoolslib/apptest.py
index 44c604306c84be8a17ce4be56fc4f9507146755b..59e23e2e007b9e301bf7a52805801151e9d5c1fe 100644
--- a/mojo/devtools/common/devtoolslib/apptest.py
+++ b/mojo/devtools/common/devtoolslib/apptest.py
@@ -53,7 +53,8 @@ def run_apptest(shell, shell_args, apptest_url, apptest_args, timeout,
_logger.debug("Starting: " + command_line)
start_time = time.time()
- (exit_code, output, did_time_out) = shell.RunAndGetOutput(arguments, timeout)
+ (exit_code, output, did_time_out) = shell.run_and_get_output(arguments,
+ timeout)
run_time = time.time() - start_time
_logger.debug("Completed: " + command_line)
« no previous file with comments | « mojo/devtools/common/devtoolslib/android_shell.py ('k') | mojo/devtools/common/devtoolslib/apptest_gtest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698