From 4314d02fbf9ef1cb9543ecf76a8d22e79d250214 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Thu, 27 Mar 2014 14:04:00 +0100 Subject: Allow primary keys to use different type than unicode. Also return list of primary keys instead of a single unicode CSV value from LDAPDelete-based commands. This introduces a new capability 'primary_key_types' for backward compatibility with old clients. Reviewed-By: Tomas Babej --- ipatests/test_xmlrpc/test_netgroup_plugin.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipatests/test_xmlrpc/test_netgroup_plugin.py') diff --git a/ipatests/test_xmlrpc/test_netgroup_plugin.py b/ipatests/test_xmlrpc/test_netgroup_plugin.py index dd3a8b84c..162879884 100644 --- a/ipatests/test_xmlrpc/test_netgroup_plugin.py +++ b/ipatests/test_xmlrpc/test_netgroup_plugin.py @@ -200,9 +200,9 @@ class test_netgroup(Declarative): desc='Delete %r' % netgroup_single, command=('netgroup_del', [netgroup_single], {}), expected=dict( - value=netgroup_single, + value=[netgroup_single], summary=u'Deleted netgroup "%s"' % netgroup_single, - result=dict(failed=u''), + result=dict(failed=[]), ), ), @@ -1281,9 +1281,9 @@ class test_netgroup(Declarative): desc='Delete %r' % netgroup1, command=('netgroup_del', [netgroup1], {}), expected=dict( - value=netgroup1, + value=[netgroup1], summary=u'Deleted netgroup "%s"' % netgroup1, - result=dict(failed=u''), + result=dict(failed=[]), ), ), -- cgit