From a32a2ad8f362ea3a6065664ff554578f3aca9c4a Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Tue, 2 Feb 2016 19:48:45 -0200 Subject: [PATCH] selftests/functional/test_replay.py: fix typo that caused sysinfo collection I noticed during a run of the self test suite that system information was being collected (`rpm -qa` and the like can usually be seen using quite a few resources). It looks like this little typo was causing that. Signed-off-by: Cleber Rosa --- selftests/functional/test_replay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selftests/functional/test_replay.py b/selftests/functional/test_replay.py index cf7cddad..cd0714c3 100644 --- a/selftests/functional/test_replay.py +++ b/selftests/functional/test_replay.py @@ -45,7 +45,7 @@ class ReplayTests(unittest.TestCase): def test_run_replay_noid(self): cmd_line = ('./scripts/avocado run --replay %s' - '--job-results-dir %s --replay-data-dir %s--sysinfo=off' % + '--job-results-dir %s --replay-data-dir %s --sysinfo=off' % ('foo', self.tmpdir, self.jobdir)) expected_rc = exit_codes.AVOCADO_JOB_FAIL self.run_and_check(cmd_line, expected_rc) -- GitLab