| Index: mojo/devtools/common/mojo_test
|
| diff --git a/mojo/devtools/common/mojo_test b/mojo/devtools/common/mojo_test
|
| index cfd8e85564a1bf21b00cc472d8a2dc92d4d35e6f..49d00e04ac659cb6ba17c3d280d0df68af17ac37 100755
|
| --- a/mojo/devtools/common/mojo_test
|
| +++ b/mojo/devtools/common/mojo_test
|
| @@ -53,12 +53,12 @@ def main():
|
| help="a file listing apptests to run")
|
|
|
| # Common shell configuration arguments.
|
| - shell_arguments.AddShellArguments(parser)
|
| + shell_arguments.add_shell_arguments(parser)
|
| script_args, common_shell_args = parser.parse_known_args()
|
|
|
| try:
|
| - shell, common_shell_args = shell_arguments.ConfigureShell(script_args,
|
| - common_shell_args)
|
| + shell, common_shell_args = shell_arguments.configure_shell(
|
| + script_args, common_shell_args)
|
| except shell_arguments.ShellConfigurationException as e:
|
| print e
|
| return 1
|
|
|