mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
remove unnecessary use of pass.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Jan 3 08:21:12 CET 2011 on sn-devel-104
This commit is contained in:
parent
22b7cb3f29
commit
b5474f2441
@ -83,7 +83,6 @@ class DrsFsmoTestCase(samba.tests.TestCase):
|
||||
# we will need DCs DNS names for 'net fsmo' command
|
||||
self.dnsname_dc1 = self.info_dc1["dnsHostName"][0]
|
||||
self.dnsname_dc2 = self.info_dc2["dnsHostName"][0]
|
||||
pass
|
||||
|
||||
def tearDown(self):
|
||||
super(DrsFsmoTestCase, self).tearDown()
|
||||
@ -100,7 +99,6 @@ class DrsFsmoTestCase(samba.tests.TestCase):
|
||||
cmd_line_auth)
|
||||
ret = os.system(cmd_line)
|
||||
self.assertEquals(ret, 0, "Transferring role %s to %s has failed!" % (role, DC))
|
||||
pass
|
||||
|
||||
def _wait_for_role_transfer(self, ldb_dc, role_dn, master):
|
||||
"""Wait for role transfer for certain amount of time
|
||||
@ -146,25 +144,19 @@ class DrsFsmoTestCase(samba.tests.TestCase):
|
||||
master=self.dsServiceName_dc1)
|
||||
self.assertTrue(res,
|
||||
"Transferring %s role to %s has failed, master is: %s!"%(role, self.dsServiceName_dc1, master))
|
||||
pass
|
||||
|
||||
def test_SchemaMasterTransfer(self):
|
||||
self._role_transfer(role="schema", role_dn=self.schema_dn)
|
||||
pass
|
||||
|
||||
def test_InfrastructureMasterTransfer(self):
|
||||
self._role_transfer(role="infrastructure", role_dn=self.infrastructure_dn)
|
||||
pass
|
||||
|
||||
def test_PDCMasterTransfer(self):
|
||||
self._role_transfer(role="pdc", role_dn=self.domain_dn)
|
||||
pass
|
||||
|
||||
def test_RIDMasterTransfer(self):
|
||||
self._role_transfer(role="rid", role_dn=self.rid_dn)
|
||||
pass
|
||||
|
||||
def test_NamingMasterTransfer(self):
|
||||
self._role_transfer(role="naming", role_dn=self.naming_dn)
|
||||
pass
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user