diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/report_tests/basic_report_tests.py | 2 | ||||
-rw-r--r-- | tests/report_tests/plugin_tests/string_collection_tests.py | 2 | ||||
-rw-r--r-- | tests/sos_tests.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/report_tests/basic_report_tests.py b/tests/report_tests/basic_report_tests.py index 2d2a6c30..f98d0f6e 100644 --- a/tests/report_tests/basic_report_tests.py +++ b/tests/report_tests/basic_report_tests.py @@ -15,7 +15,7 @@ class NormalSoSReport(StageOneReportTest): :avocado: tags=stageone """ - sos_cmd = '-v --label thisismylabel' + sos_cmd = '--label thisismylabel' def test_debug_in_logs_verbose(self): self.assertSosLogContains('DEBUG') diff --git a/tests/report_tests/plugin_tests/string_collection_tests.py b/tests/report_tests/plugin_tests/string_collection_tests.py index d98401b3..05091a2e 100644 --- a/tests/report_tests/plugin_tests/string_collection_tests.py +++ b/tests/report_tests/plugin_tests/string_collection_tests.py @@ -17,7 +17,7 @@ class CollectStringTest(StageOneReportTest): :avocado: tags=stageone """ - sos_cmd = '-v -o unpackaged,python -k python.hashes' + sos_cmd = '-o unpackaged,python -k python.hashes' # unpackaged is only a RedHatPlugin redhat_only = True diff --git a/tests/sos_tests.py b/tests/sos_tests.py index eeab1c2a..a1c68353 100644 --- a/tests/sos_tests.py +++ b/tests/sos_tests.py @@ -409,7 +409,7 @@ class BaseSoSReportTest(BaseSoSTest): return os.path.join(self.tmpdir, "sosreport-%s" % self.__class__.__name__) def _generate_sos_command(self): - return "%s %s --batch --tmp-dir %s %s" % (SOS_BIN, self.sos_component, self.tmpdir, self.sos_cmd) + return "%s %s -v --batch --tmp-dir %s %s" % (SOS_BIN, self.sos_component, self.tmpdir, self.sos_cmd) def _execute_sos_cmd(self): super(BaseSoSReportTest, self)._execute_sos_cmd() |