summaryrefslogtreecommitdiff
path: root/source4/scripting/bin
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-05-23 15:10:35 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-05-23 15:10:35 +0200
commit5eed56d0ad5245a346ea564bc34e882828394611 (patch)
treea8c408dc8922d024fd639a4852f4426ed23af53d /source4/scripting/bin
parentdff31b1dc0ec1aea8cec9d5764f4f3a4c109a848 (diff)
downloadsamba-5eed56d0ad5245a346ea564bc34e882828394611.tar.gz
samba-5eed56d0ad5245a346ea564bc34e882828394611.tar.bz2
samba-5eed56d0ad5245a346ea564bc34e882828394611.zip
Fix bugs in samr python tests.
(This used to be commit 09c6b106ac144820b8c072bda4dad3d8e2145ff0)
Diffstat (limited to 'source4/scripting/bin')
-rwxr-xr-xsource4/scripting/bin/samr.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/scripting/bin/samr.py b/source4/scripting/bin/samr.py
index 118cf759fe..e91b5bc312 100755
--- a/source4/scripting/bin/samr.py
+++ b/source4/scripting/bin/samr.py
@@ -24,7 +24,7 @@ import sys
sys.path.insert(0, "bin/python")
-from samba.dcerpc import samr, security
+from samba.dcerpc import samr, security, lsa
def FillUserInfo(samr, dom_handle, users, level):
"""fill a user array with user information from samrQueryUserInfo"""
@@ -69,10 +69,10 @@ def test_EnumDomainUsers(samr, dom_handle):
def test_EnumDomainGroups(samr, dom_handle):
"""test the samr_EnumDomainGroups interface"""
print "Testing samr_EnumDomainGroups"
- groups = toArray(samr.EnumDomainGroups(dom_handle, 0, 0, -1))
+ groups = toArray(samr.EnumDomainGroups(dom_handle, 0, 0))
print "Found %d groups" % len(groups)
for idx, group in groups:
- print "\t" + group + "\t(" + idx + ")"
+ print "\t%s\t(%d)" % (group, idx)
def test_domain_ops(samr, dom_handle):
"""test domain specific ops"""