mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed become tests
This commit is contained in:
parent
dfb94f0def
commit
14f061d5ea
1 changed files with 2 additions and 2 deletions
|
@ -115,9 +115,9 @@ class TestPlayContext(unittest.TestCase):
|
||||||
|
|
||||||
default_cmd = "/bin/foo"
|
default_cmd = "/bin/foo"
|
||||||
default_exe = "/bin/bash"
|
default_exe = "/bin/bash"
|
||||||
sudo_exe = C.DEFAULT_SUDO_EXE
|
sudo_exe = C.DEFAULT_SUDO_EXE or 'sudo'
|
||||||
sudo_flags = C.DEFAULT_SUDO_FLAGS + " -n "
|
sudo_flags = C.DEFAULT_SUDO_FLAGS + " -n "
|
||||||
su_exe = C.DEFAULT_SU_EXE
|
su_exe = C.DEFAULT_SU_EXE or 'su'
|
||||||
su_flags = C.DEFAULT_SU_FLAGS
|
su_flags = C.DEFAULT_SU_FLAGS
|
||||||
pbrun_exe = 'pbrun'
|
pbrun_exe = 'pbrun'
|
||||||
pbrun_flags = ''
|
pbrun_flags = ''
|
||||||
|
|
Loading…
Reference in a new issue