summaryrefslogtreecommitdiff
path: root/source4/dsdb/tests
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2011-04-29 19:03:48 +0200
committerMatthias Dieter Wallnöfer <mdw@samba.org>2011-04-29 19:05:04 +0200
commit3884fec3d504af8c4bc9cff1e6c1a540d874ec8c (patch)
treec7b83220b4dd318fe0344ea850f697ec90f181bb /source4/dsdb/tests
parentdf099e66240c7670c9f7b7dcccb1c38216bac3ec (diff)
downloadsamba-3884fec3d504af8c4bc9cff1e6c1a540d874ec8c.tar.gz
samba-3884fec3d504af8c4bc9cff1e6c1a540d874ec8c.tar.bz2
samba-3884fec3d504af8c4bc9cff1e6c1a540d874ec8c.zip
s4:token_group.py python test - fix typos
Diffstat (limited to 'source4/dsdb/tests')
-rwxr-xr-xsource4/dsdb/tests/python/token_group.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/dsdb/tests/python/token_group.py b/source4/dsdb/tests/python/token_group.py
index 62bdbd5ee0..fb7654e7e0 100755
--- a/source4/dsdb/tests/python/token_group.py
+++ b/source4/dsdb/tests/python/token_group.py
@@ -78,7 +78,7 @@ class TokenTest(samba.tests.TestCase):
res = self.ldb.search("", scope=ldb.SCOPE_BASE, attrs=["tokenGroups"])
self.assertEquals(len(res), 1)
- print("Geting tokenGroups from rootDSE")
+ print("Getting tokenGroups from rootDSE")
tokengroups = []
for sid in res[0]['tokenGroups']:
tokengroups.append(str(ndr_unpack(samba.dcerpc.security.dom_sid, sid)))
@@ -93,7 +93,7 @@ class TokenTest(samba.tests.TestCase):
self.fail(msg="calculated groups don't match against rootDSE tokenGroups")
def test_dn_tokenGroups(self):
- print("Geting tokenGroups from user DN")
+ print("Getting tokenGroups from user DN")
res = self.ldb.search(self.user_sid_dn, scope=ldb.SCOPE_BASE, attrs=["tokenGroups"])
self.assertEquals(len(res), 1)