mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
fix typo
This commit is contained in:
parent
cbda9919bb
commit
aa18874223
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class SystemdTestCase(TestCase):
|
|||
|
||||
def test_has_systemd_support_file_not_found_error(self):
|
||||
with patch(
|
||||
"subprocess.check_output", sside_effect=FileNotFoundError
|
||||
"subprocess.check_output", side_effect=FileNotFoundError
|
||||
) as check_output:
|
||||
self.assertFalse(_systemd._has_systemd_support())
|
||||
check_output.assert_called_once()
|
||||
|
|
Loading…
Add table
Reference in a new issue