summaryrefslogtreecommitdiff
path: root/source4/dsdb/tests/python/dirsync.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-09-16 11:14:12 +1000
committerAndrew Tridgell <tridge@samba.org>2011-09-19 10:57:03 +1000
commit4577ee1f957e08d19b2c849b9b698b31474040ff (patch)
treebcff56e9213bb0d2e95a0327ae5670d49e45a379 /source4/dsdb/tests/python/dirsync.py
parentcea37b0d6d0f5f32fdfafd160dfbcf2c5dccdb12 (diff)
downloadsamba-4577ee1f957e08d19b2c849b9b698b31474040ff.tar.gz
samba-4577ee1f957e08d19b2c849b9b698b31474040ff.tar.bz2
samba-4577ee1f957e08d19b2c849b9b698b31474040ff.zip
s4-dsdb: use get_config_basedn() in python tests
we can't just append CN=Configuration to the basedn, as that won't give the right configuration DN for a subdomain of a forest Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/dsdb/tests/python/dirsync.py')
-rwxr-xr-xsource4/dsdb/tests/python/dirsync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/tests/python/dirsync.py b/source4/dsdb/tests/python/dirsync.py
index 96c6950841..dcb10a8044 100755
--- a/source4/dsdb/tests/python/dirsync.py
+++ b/source4/dsdb/tests/python/dirsync.py
@@ -166,7 +166,7 @@ class SimpleDirsyncTests(DirsyncBaseTests):
def test_ok_not_rootdc(self):
"""Test if it's ok to do dirsync on another NC that is not the root DC"""
try:
- res = self.ldb_admin.search("CN=Configuration, %s" % self.base_dn,
+ res = self.ldb_admin.search(self.ldb_admin.get_config_basedn(),
expression="samaccountname=*",
controls=["dirsync:1:0:1"])
except: