Index: mojo/tools/gtest.py |
diff --git a/mojo/tools/gtest.py b/mojo/tools/gtest.py |
index c03b62f49cc4b922022761bc756c35dc3ca45d1e..d84c8e5ea59e056507621fa8fd28e4068539867c 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, "--gtest_list_tests", apptest] |
try: |
list_output = subprocess.check_output(command, stderr=subprocess.STDOUT) |
_logging.debug("Tests listed:\n%s" % list_output) |