diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-10-15 16:11:30 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-10-15 20:02:59 +1100 |
commit | 387e67d53f7c0479ce29f6dd2a031c1158222491 (patch) | |
tree | fa059d51090501ad403e6e78c821549b0d4b556f /source4/lib | |
parent | ea60b72c4698791ff80f56b6fe68aa647366efea (diff) | |
download | samba-387e67d53f7c0479ce29f6dd2a031c1158222491.tar.gz samba-387e67d53f7c0479ce29f6dd2a031c1158222491.tar.bz2 samba-387e67d53f7c0479ce29f6dd2a031c1158222491.zip |
s4-ldaptest: "testgroup" is a bit too common
This failed on one of my test boxes that has a group called
"testgroup". using "testgroupXX" should be a bit better.
Diffstat (limited to 'source4/lib')
-rwxr-xr-x | source4/lib/ldb/tests/python/ldap.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/tests/python/ldap.py b/source4/lib/ldb/tests/python/ldap.py index 3011b7ed28..118fb87c84 100755 --- a/source4/lib/ldb/tests/python/ldap.py +++ b/source4/lib/ldb/tests/python/ldap.py @@ -222,13 +222,13 @@ class BasicTests(unittest.TestCase): m = Message() m.dn = Dn(ldb, "cn=ldaptestgroup,cn=users," + self.base_dn) - m["sAMAccountName"] = MessageElement("testgroup", FLAG_MOD_REPLACE, + m["sAMAccountName"] = MessageElement("testgroupXX", FLAG_MOD_REPLACE, "sAMAccountName") ldb.modify(m) m = Message() m.dn = Dn(ldb, "cn=ldaptestgroup,cn=users," + self.base_dn) - m["sAMAccountName"] = MessageElement("testgroup2", FLAG_MOD_ADD, + m["sAMAccountName"] = MessageElement("testgroupXX2", FLAG_MOD_ADD, "sAMAccountName") try: ldb.modify(m) |