summaryrefslogtreecommitdiffstats
path: root/tests/test_xmlrpc/test_user_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_xmlrpc/test_user_plugin.py')
-rw-r--r--tests/test_xmlrpc/test_user_plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_xmlrpc/test_user_plugin.py b/tests/test_xmlrpc/test_user_plugin.py
index da2df4bc..20051140 100644
--- a/tests/test_xmlrpc/test_user_plugin.py
+++ b/tests/test_xmlrpc/test_user_plugin.py
@@ -75,8 +75,8 @@ class test_User(XMLRPC_test):
"""
Test the `xmlrpc.user_find` method with all attributes.
"""
- kw={'uid':self.uid, 'all': True}
- res = api.Command['user_find'](**kw)
+ kw={'all': True}
+ res = api.Command['user_find'](self.uid, **kw)
assert res
assert len(res) == 2
assert res[1].get('givenname','') == self.givenname