aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJake Hunsaker <jhunsake@redhat.com>2021-02-02 13:53:18 -0500
committerJake Hunsaker <jhunsake@redhat.com>2021-02-03 12:25:38 -0500
commit9bc386c9191d6b094684982cbc35efe79eecff81 (patch)
tree1ac5c416824ae53f317967d917d8a9e59eca2cec /tests
parentc753bc0841ea5a21304369ed07884e93d3332c01 (diff)
downloadsos-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')
-rw-r--r--tests/option_tests.py2
-rw-r--r--tests/plugin_tests.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/option_tests.py b/tests/option_tests.py
index a92acab8..58f54e94 100644
--- a/tests/option_tests.py
+++ b/tests/option_tests.py
@@ -17,7 +17,7 @@ class MockOptions(object):
dry_run = False
log_size = 25
allow_system_changes = False
- skip_cmds = []
+ skip_commands = []
skip_files = []
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):