From a5e8ef884b847c5db50431956db0ef5ecc5f77e2 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 20 Jun 2010 01:37:06 +0200 Subject: Move a few more samdb-specific methods to SamDB, away from Ldb. --- source4/lib/ldb/tests/python/dsdb_schema_info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib/ldb/tests') 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, -- cgit