From 3f2a8d508123550c7fd4c7d29ab7d53f24a61629 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sun, 1 Aug 2010 17:44:50 +0200 Subject: 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. --- source4/dsdb/tests/python/urgent_replication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/dsdb/tests') 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) -- cgit