diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-07-03 15:37:45 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-07-03 15:37:45 +0200 |
commit | f41d9eb8dc5cf63625260ce577548b0471fc84c8 (patch) | |
tree | 733704bb8f34b88b36a02fcc4b3b433476e64ab7 /source4/dsdb/tests | |
parent | 465c601071df9de9f15f65bdad3355a77cdc1d59 (diff) | |
download | samba-f41d9eb8dc5cf63625260ce577548b0471fc84c8.tar.gz samba-f41d9eb8dc5cf63625260ce577548b0471fc84c8.tar.bz2 samba-f41d9eb8dc5cf63625260ce577548b0471fc84c8.zip |
s4:dsdb/tests/python/ldap_schema.py - remove a now useless "schemaUpdateNow" request
"schemaUpdateNow" on s4 is now a non-op and therefore not strictly needed anymore.
Diffstat (limited to 'source4/dsdb/tests')
-rwxr-xr-x | source4/dsdb/tests/python/ldap_schema.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/source4/dsdb/tests/python/ldap_schema.py b/source4/dsdb/tests/python/ldap_schema.py index 270e22adb1..4f17dd8b36 100755 --- a/source4/dsdb/tests/python/ldap_schema.py +++ b/source4/dsdb/tests/python/ldap_schema.py @@ -118,16 +118,6 @@ systemOnly: FALSE self.assertEquals(res[0]["lDAPDisplayName"][0], attr_ldap_display_name) self.assertTrue("schemaIDGUID" in res[0]) - # Samba requires a "schemaUpdateNow" here. - # TODO: remove this when Samba is fixed - ldif = """ -dn: -changetype: modify -add: schemaUpdateNow -schemaUpdateNow: 1 -""" - self.ldb.modify_ldif(ldif) - class_name = "test-Class" + time.strftime("%s", time.gmtime()) class_ldap_display_name = class_name.replace("-", "") |