Skip to content

Commit 5a05aa2

Browse files
committed
Add metavar to match var name in help text + Change wording for better readability
1 parent 29f429d commit 5a05aa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def main():
214214
epilog='''
215215
Help text and arguments for individual test script:''',
216216
formatter_class=argparse.RawTextHelpFormatter)
217-
parser.add_argument('--combinedlogslen', '-c', type=int, default=0, help='print a combined log (of length n lines) from all test nodes and test framework to the console on failure.')
217+
parser.add_argument('--combinedlogslen', '-c', type=int, default=0, metavar='n', help='On failure, print a log (of length n lines) to the console, combined from the test framework and all test nodes.')
218218
parser.add_argument('--coverage', action='store_true', help='generate a basic coverage report for the RPC interface')
219219
parser.add_argument('--exclude', '-x', help='specify a comma-separated-list of scripts to exclude.')
220220
parser.add_argument('--extended', action='store_true', help='run the extended test suite in addition to the basic tests')

0 commit comments

Comments
 (0)