| Index: mojo/tools/gtest.py
 | 
| diff --git a/mojo/tools/gtest.py b/mojo/tools/gtest.py
 | 
| index c03b62f49cc4b922022761bc756c35dc3ca45d1e..5f35cef381d9c234bbdf26d27878e90b14300c3e 100644
 | 
| --- a/mojo/tools/gtest.py
 | 
| +++ b/mojo/tools/gtest.py
 | 
| @@ -70,9 +70,7 @@ def get_fixtures(mojo_shell, apptest):
 | 
|    [TestSuite.TestFixture, ... ]
 | 
|    An empty list is returned on failure, with errors logged.
 | 
|    """
 | 
| -  command = [mojo_shell,
 | 
| -             "--args-for={0} --gtest_list_tests".format(apptest),
 | 
| -             apptest]
 | 
| +  command = [mojo_shell, apptest, "--gtest_list_tests"]
 | 
|    try:
 | 
|      list_output = subprocess.check_output(command, stderr=subprocess.STDOUT)
 | 
|      _logging.debug("Tests listed:\n%s" % list_output)
 | 
| 
 |