diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2021-02-02 13:53:18 -0500 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2021-02-03 12:25:38 -0500 |
commit | 9bc386c9191d6b094684982cbc35efe79eecff81 (patch) | |
tree | 1ac5c416824ae53f317967d917d8a9e59eca2cec /tests/plugin_tests.py | |
parent | c753bc0841ea5a21304369ed07884e93d3332c01 (diff) | |
download | sos-9bc386c9191d6b094684982cbc35efe79eecff81.tar.gz |
[sos] Align plugin options with destination names
This commit alters several option long-form names or destination names
to align those values in a sensible way. This serves to not only remove
some abiguity in option naming in code, but also to make it so that the
"effective options" line logged in every sos execution can be direction
copy-pasted as a working command.
Closes: #2288
Resolves: #2398
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to 'tests/plugin_tests.py')
-rw-r--r-- | tests/plugin_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugin_tests.py b/tests/plugin_tests.py index 54802050..2f362c94 100644 --- a/tests/plugin_tests.py +++ b/tests/plugin_tests.py @@ -116,7 +116,7 @@ class MockOptions(object): allow_system_changes = False no_postproc = False skip_files = [] - skip_cmds = [] + skip_commands = [] class PluginToolTests(unittest.TestCase): |