updated pbrun test to match expected output
This commit is contained in:
parent
3fc1b4da53
commit
04b86df815
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ class TestPlayContext(unittest.TestCase):
|
|||
|
||||
play_context.become_method = 'pbrun'
|
||||
cmd = play_context.make_become_cmd(cmd=default_cmd, executable="/bin/bash")
|
||||
self.assertEqual(cmd, """%s -b %s -u %s 'echo %s; %s'""" % (pbrun_exe, pbrun_flags, play_context.become_user, play_context.success_key, default_cmd))
|
||||
self.assertEqual(cmd, """%s %s -u %s 'echo %s; %s'""" % (pbrun_exe, pbrun_flags, play_context.become_user, play_context.success_key, default_cmd))
|
||||
|
||||
play_context.become_method = 'pfexec'
|
||||
cmd = play_context.make_become_cmd(cmd=default_cmd, executable="/bin/bash")
|
||||
|
|
Loading…
Reference in a new issue