From 918721c1d0ad0b330825aa9e3f464f36e31ad0c1 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Fri, 26 Mar 2010 03:56:53 -0600 Subject: XML-RPC signature change --- tests/test_ipalib/test_rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_ipalib') diff --git a/tests/test_ipalib/test_rpc.py b/tests/test_ipalib/test_rpc.py index 83092b5de..a87b65a0b 100644 --- a/tests/test_ipalib/test_rpc.py +++ b/tests/test_ipalib/test_rpc.py @@ -204,7 +204,7 @@ class test_xmlclient(PluginTester): (o, api, home) = self.instance('Backend', user_add, in_server=False) args = (binary_bytes, utf8_bytes, unicode_str) kw = dict(one=binary_bytes, two=utf8_bytes, three=unicode_str) - params = args + (kw,) + params = [args, kw] result = (unicode_str, binary_bytes, utf8_bytes) conn = DummyClass( ( -- cgit