diff options
-rwxr-xr-x | source4/dsdb/tests/python/urgent_replication.py | 2 |
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) |