diff --git a/test/integration/component/test_ldap.py b/test/integration/component/test_ldap.py index 83f970be27d..d9e7c351cdb 100644 --- a/test/integration/component/test_ldap.py +++ b/test/integration/component/test_ldap.py @@ -54,7 +54,6 @@ class Services: { "basedn": "dc=cloudstack,dc=org", "emailAttribute": "mail", - "realnameAttribute": "cn", "userObject": "inetOrgPerson", "usernameAttribute": "uid", "hostname": "localhost", @@ -179,14 +178,6 @@ class TestLdap(cloudstackTestCase): updateConfigurationResponse = self.apiClient.updateConfiguration(updateConfigurationCmd) self.debug("updated the parameter %s with value %s"%(updateConfigurationResponse.name, updateConfigurationResponse.value)) - - updateConfigurationCmd = updateConfiguration.updateConfigurationCmd() - updateConfigurationCmd.name = "ldap.realname.attribute" - updateConfigurationCmd.value = ldapConfiguration['realnameAttribute'] - updateConfigurationResponse = self.apiClient.updateConfiguration(updateConfigurationCmd) - self.debug("updated the parameter %s with value %s"%(updateConfigurationResponse.name, updateConfigurationResponse.value)) - - updateConfigurationCmd = updateConfiguration.updateConfigurationCmd() updateConfigurationCmd.name = "ldap.user.object" updateConfigurationCmd.value = ldapConfiguration['userObject']