1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-17 04:23:50 +03:00

python: Move dsdb_Dn to samdb

The import dsdb needed for dsdb_Dn causes import
errors when trying to import get_bytes/get_string
in some places.

Signed-off-by: David Mulder <dmulder@suse.com>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
David Mulder
2020-09-14 11:12:37 -06:00
committed by David Mulder
parent 234957a2e4
commit 85d2ff2f00
7 changed files with 81 additions and 87 deletions

View File

@@ -20,8 +20,8 @@
import samba
import os
import samba.tests
from samba.common import normalise_int32, dsdb_Dn
from samba.samdb import SamDB
from samba.common import normalise_int32
from samba.samdb import SamDB, dsdb_Dn
class CommonTests(samba.tests.TestCaseInTempDir):