From a053e37b2cd453db35ca28e5292e24ec898e585f Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 31 May 2014 18:11:01 +0100 Subject: [PATCH] tests: Change --test_dirs to --test-dirs. --- tests/run-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-tests b/tests/run-tests index 1a79bdc093..1e6dd50538 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -111,7 +111,7 @@ def run_tests(pyb, tests): def main(): cmd_parser = argparse.ArgumentParser(description='Run tests for Micro Python.') cmd_parser.add_argument('--pyboard', action='store_true', help='run the tests on the pyboard') - cmd_parser.add_argument('-d', '--test_dirs', nargs='*', help='input test directories (if no files given)') + cmd_parser.add_argument('-d', '--test-dirs', nargs='*', help='input test directories (if no files given)') cmd_parser.add_argument('files', nargs='*', help='input test files') args = cmd_parser.parse_args()