summaryrefslogtreecommitdiffstats
path: root/tests/test_xmlrpc/test_taskgroup_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_xmlrpc/test_taskgroup_plugin.py')
-rw-r--r--tests/test_xmlrpc/test_taskgroup_plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_xmlrpc/test_taskgroup_plugin.py b/tests/test_xmlrpc/test_taskgroup_plugin.py
index b1e811c7..9cede858 100644
--- a/tests/test_xmlrpc/test_taskgroup_plugin.py
+++ b/tests/test_xmlrpc/test_taskgroup_plugin.py
@@ -77,7 +77,7 @@ class test_taskgroup(XMLRPC_test):
kw = {}
kw['groups'] = self.taskgroup_cn
kw['rolegroups'] = self.rolegroup_cn
- (total, res) = api.Command['taskgroup_add_member'](self.cn, **kw)
+ (total, failed, res) = api.Command['taskgroup_add_member'](self.cn, **kw)
assert total == 2
def test_5_taskgroup_show(self):
@@ -124,7 +124,7 @@ class test_taskgroup(XMLRPC_test):
"""
kw = {}
kw['groups'] = self.taskgroup_cn
- (total, res) = api.Command['taskgroup_del_member'](self.cn, **kw)
+ (total, failed, res) = api.Command['taskgroup_del_member'](self.cn, **kw)
assert total == 1
def test_9_taskgroup_del(self):