diff options
author | Petr Viktorin <pviktori@redhat.com> | 2013-01-10 06:14:15 -0500 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2013-03-01 16:59:42 +0100 |
commit | c0a89efd6852bfd07dec4c8b1e74f0e927e7fdd8 (patch) | |
tree | d5aba820545bebcacae11a33fc4233eef25972bd /tests | |
parent | ef1cd6e24732e7fa64f6c4b0ce32a909fbf1df5d (diff) | |
download | freeipa-c0a89efd6852bfd07dec4c8b1e74f0e927e7fdd8.tar.gz freeipa-c0a89efd6852bfd07dec4c8b1e74f0e927e7fdd8.tar.xz freeipa-c0a89efd6852bfd07dec4c8b1e74f0e927e7fdd8.zip |
Remove some unused imports
Remove all unused LDAP-related imports, plus some other ones.
This should make it easier to quickly check what uses which LDAP wrapper
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_cmdline/cmdline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cmdline/cmdline.py b/tests/test_cmdline/cmdline.py index 76a99b7d7..1df6a7cce 100644 --- a/tests/test_cmdline/cmdline.py +++ b/tests/test_cmdline/cmdline.py @@ -22,9 +22,9 @@ Base class for all cmdline tests """ import nose -import ldap import krbV -from ipalib import api, request + +from ipalib import api from ipalib import errors from tests.test_xmlrpc.xmlrpc_test import XMLRPC_test from ipaserver.plugins.ldap2 import ldap2 |