summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-08-01 17:44:50 +0200
committerMatthias Dieter Wallnöfer <mdw@samba.org>2010-08-01 18:50:57 +0200
commit3f2a8d508123550c7fd4c7d29ab7d53f24a61629 (patch)
tree4e6aa7421a73063eaac7b03e4190d8c66c344cac /source4
parentea5c40428f7e195f9db1efbd320969184bda6593 (diff)
downloadsamba-3f2a8d508123550c7fd4c7d29ab7d53f24a61629.tar.gz
samba-3f2a8d508123550c7fd4c7d29ab7d53f24a61629.tar.bz2
samba-3f2a8d508123550c7fd4c7d29ab7d53f24a61629.zip
s4:urgent_replication.py test - adapt the test for the harder delete restrictions
Otherwise we are not able to delete the "test crossRef" object which points to the default NC anymore.
Diffstat (limited to 'source4')
-rwxr-xr-xsource4/dsdb/tests/python/urgent_replication.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/tests/python/urgent_replication.py b/source4/dsdb/tests/python/urgent_replication.py
index 092466ddfe..42f3cd0bd7 100755
--- a/source4/dsdb/tests/python/urgent_replication.py
+++ b/source4/dsdb/tests/python/urgent_replication.py
@@ -43,7 +43,7 @@ class UrgentReplicationTests(samba.tests.TestCase):
def delete_force(self, ldb, dn):
try:
- ldb.delete(dn)
+ ldb.delete(dn, ["relax:0"])
except LdbError, (num, _):
self.assertEquals(num, ERR_NO_SUCH_OBJECT)