diff options
-rwxr-xr-x | source4/dsdb/tests/python/ldap.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/dsdb/tests/python/ldap.py b/source4/dsdb/tests/python/ldap.py index 7cf02ea97d..864b7fa6dc 100755 --- a/source4/dsdb/tests/python/ldap.py +++ b/source4/dsdb/tests/python/ldap.py @@ -1695,11 +1695,12 @@ objectClass: container except LdbError, (num, _): self.assertEquals(num, ERR_UNWILLING_TO_PERFORM) - try: - ldb.delete("cn=Enterprise Configuration,cn=Partitions," + self.configuration_dn) - self.fail() - except LdbError, (num, _): - self.assertEquals(num, ERR_UNWILLING_TO_PERFORM) +# TODO: This fails with LDB_ERR_NOT_ALLOWED_ON_NON_LEAF on Windows +# try: +# ldb.delete("cn=Enterprise Configuration,cn=Partitions," + self.configuration_dn) +# self.fail() +# except LdbError, (num, _): +# self.assertEquals(num, ERR_UNWILLING_TO_PERFORM) # Performs some "systemFlags" testing |