diff options
Diffstat (limited to 'ipatests/test_integration/host.py')
-rw-r--r-- | ipatests/test_integration/host.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipatests/test_integration/host.py b/ipatests/test_integration/host.py index 399884fdb..8b9ebd5e8 100644 --- a/ipatests/test_integration/host.py +++ b/ipatests/test_integration/host.py @@ -47,7 +47,7 @@ class Host(pytest_multihost.host.Host): ldap = IPAdmin(self.external_hostname) binddn = self.config.dirman_dn self.log.info('LDAP bind as %s' % binddn) - ldap.do_simple_bind(binddn, self.config.dirman_password) + ldap.simple_bind(binddn, self.config.dirman_password) return ldap @classmethod |