diff options
Diffstat (limited to 'source4/lib/ldb')
-rwxr-xr-x | source4/lib/ldb/tests/python/dsdb_schema_info.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/tests/python/dsdb_schema_info.py b/source4/lib/ldb/tests/python/dsdb_schema_info.py index f6e0024b7b..56d9b117ab 100755 --- a/source4/lib/ldb/tests/python/dsdb_schema_info.py +++ b/source4/lib/ldb/tests/python/dsdb_schema_info.py @@ -34,7 +34,7 @@ sys.path.append("bin/python") from samba.auth import system_session from ldb import SCOPE_BASE, LdbError -from samba import Ldb +from samba.samdb import SamDB import samba.tests import samba.dcerpc.drsuapi @@ -203,7 +203,7 @@ if not "://" in ldb_url: # user 'paged_search' module when connecting remotely ldb_options = ["modules:paged_searches"] -ldb = Ldb(url=ldb_url, +ldb = SamDB(url=ldb_url, lp=samba.tests.env_loadparm(), session_info=system_session(), credentials=samba.tests.cmdline_credentials, |