mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Fix test_disabled
Use get instead of pop
This commit is contained in:
parent
fef8f90919
commit
9308ad1e7a
@ -183,7 +183,7 @@ def launchctl(sub_cmd, *args, **kwargs):
|
||||
salt '*' service.launchctl debug org.cups.cupsd
|
||||
'''
|
||||
# Get return type
|
||||
return_stdout = kwargs.pop('return_stdout', False)
|
||||
return_stdout = kwargs.get('return_stdout', False)
|
||||
|
||||
# Construct command
|
||||
cmd = ['launchctl', sub_cmd]
|
||||
|
@ -181,7 +181,7 @@ class MacServiceModuleTest(integration.ModuleCase):
|
||||
self.assertTrue(self.run_function('service.stop', [SERVICE_NAME]))
|
||||
self.assertTrue(self.run_function('service.disabled', [SERVICE_NAME]))
|
||||
|
||||
self.assertTrue(self.run_function('service.enabled', ['spongebob']))
|
||||
self.assertTrue(self.run_function('service.disabled', ['spongebob']))
|
||||
|
||||
def test_get_all(self):
|
||||
'''
|
||||
|
Loading…
Reference in New Issue
Block a user