Commit 617e7eaf by James Cammarata

Merge pull request #7563 from tima/fix-testutils-su

Recent BSD su work introduced a failing test. Removed leading space from...
parents e43ae3c0 754d635a
......@@ -512,7 +512,7 @@ class TestUtils(unittest.TestCase):
cmd = ansible.utils.make_su_cmd('root', '/bin/sh', '/bin/ls')
self.assertTrue(isinstance(cmd, tuple))
self.assertEqual(len(cmd), 3)
self.assertTrue(' root -c "/bin/sh' in cmd[0])
self.assertTrue('root -c "/bin/sh' in cmd[0])
self.assertTrue(re.compile(cmd[1]))
self.assertTrue('echo SUDO-SUCCESS-' in cmd[0] and cmd[2].startswith('SUDO-SUCCESS-'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment