diff options
author | Tatyana Krasnukha <tatyana@synopsys.com> | 2019-12-12 14:17:14 +0300 |
---|---|---|
committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2020-01-10 17:37:55 +0300 |
commit | e20a3b9b6c028ef3fea92ddb19e98db45e3d0509 (patch) | |
tree | a4357d4af48c426879e61e48bd27f4c644184380 /lldb/packages/Python/lldbsuite/test/dotest_args.py | |
parent | f0fd11df7d5488e2747f26a3bfcf62459fee54ad (diff) | |
download | bcm5719-llvm-e20a3b9b6c028ef3fea92ddb19e98db45e3d0509.tar.gz bcm5719-llvm-e20a3b9b6c028ef3fea92ddb19e98db45e3d0509.zip |
[lldb][tests][NFC] Unify variable naming convention
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest_args.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest_args.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest_args.py b/lldb/packages/Python/lldbsuite/test/dotest_args.py index 2d5f048d53e..9bcebc58cd2 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest_args.py +++ b/lldb/packages/Python/lldbsuite/test/dotest_args.py @@ -75,13 +75,13 @@ def create_parser(): '--category', metavar='category', action='append', - dest='categoriesList', + dest='categories_list', help=textwrap.dedent('''Specify categories of test cases of interest. Can be specified more than once.''')) group.add_argument( '--skip-category', metavar='category', action='append', - dest='skipCategories', + dest='skip_categories', help=textwrap.dedent('''Specify categories of test cases to skip. Takes precedence over -G. Can be specified more than once.''')) # Configuration options |