mirror of
https://github.com/samba-team/samba.git
synced 2025-07-29 15:42:04 +03:00
samba-tool tests: rename 'ou create' to 'ou add'
Signed-off-by: Jule Anger <ja@sernet.de> Reviewed-by: Björn Baumbach <bb@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
committed by
Douglas Bagnall
parent
3b8ed676cc
commit
6315deaa67
@ -264,10 +264,10 @@ class GroupCmdTestCase(SambaToolCmdTest):
|
||||
|
||||
def test_move(self):
|
||||
full_ou_dn = str(self.samdb.normalize_dn_in_domain("OU=movetest"))
|
||||
(result, out, err) = self.runsubcmd("ou", "create", full_ou_dn)
|
||||
(result, out, err) = self.runsubcmd("ou", "add", full_ou_dn)
|
||||
self.assertCmdSuccess(result, out, err)
|
||||
self.assertEqual(err, "", "There shouldn't be any error message")
|
||||
self.assertIn('Created ou "%s"' % full_ou_dn, out)
|
||||
self.assertIn('Added ou "%s"' % full_ou_dn, out)
|
||||
|
||||
for group in self.groups:
|
||||
(result, out, err) = self.runsubcmd(
|
||||
|
Reference in New Issue
Block a user