From 49a0e3ac01e3abef2be324bc3689d1296762265a Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 17 Jan 2013 08:07:06 -0500 Subject: Move LDAPEntry to ipaserver.ipaldap and derive Entry from it Legacy Entry methods such as setValue are added to LDAPEntry directly, so that we can use connection classes that return LDAPEntry with code that expects Entries. The Entry and its unique __init__ are still kept for compatibility. Part of the work for: https://fedorahosted.org/freeipa/ticket/2660 --- tests/test_ipaserver/test_ldap.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/test_ipaserver/test_ldap.py') diff --git a/tests/test_ipaserver/test_ldap.py b/tests/test_ipaserver/test_ldap.py index 872d69f0..06d5d4ec 100644 --- a/tests/test_ipaserver/test_ldap.py +++ b/tests/test_ipaserver/test_ldap.py @@ -27,7 +27,8 @@ import nose import os -from ipaserver.plugins.ldap2 import ldap2, LDAPEntry +from ipaserver.plugins.ldap2 import ldap2 +from ipaserver.ipaldap import LDAPEntry from ipalib.plugins.service import service, service_show from ipalib.plugins.host import host import nss.nss as nss -- cgit