Index: mojo/tools/run_mojo_python_bindings_tests.py |
diff --git a/mojo/tools/run_mojo_python_bindings_tests.py b/mojo/tools/run_mojo_python_bindings_tests.py |
index b7b2e28c754a0d57431912d319c519d603f1eed5..916c68d8754e53a956863787bdc5b0c050916667 100755 |
--- a/mojo/tools/run_mojo_python_bindings_tests.py |
+++ b/mojo/tools/run_mojo_python_bindings_tests.py |
@@ -15,7 +15,7 @@ from mojo_python_tests_runner import MojoPythonTestRunner |
class PythonBindingsTestRunner(MojoPythonTestRunner): |
def add_custom_commandline_options(self, parser): |
- parser.add_argument('--build_dir', action='store', |
+ parser.add_argument('--build-dir', action='store', |
help='path to the build output directory') |
def apply_customization(self, args): |
@@ -26,7 +26,6 @@ class PythonBindingsTestRunner(MojoPythonTestRunner): |
python_gen_dir = os.path.join( |
args.build_dir, |
'gen', 'mojo', 'public', 'interfaces', 'bindings', 'tests') |
- print python_gen_dir |
if python_gen_dir not in sys.path: |
sys.path.append(python_gen_dir) |