From 35cbbde5bf6e2f38375390fa102ce489191a9450 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 27 Jul 2010 16:38:32 -0400 Subject: Fix RPC tests. The method comes back as a unicode from xmlrpclib. --- tests/test_ipalib/test_rpc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_ipalib') diff --git a/tests/test_ipalib/test_rpc.py b/tests/test_ipalib/test_rpc.py index a87b65a0b..315523b7f 100644 --- a/tests/test_ipalib/test_rpc.py +++ b/tests/test_ipalib/test_rpc.py @@ -128,7 +128,7 @@ def test_xml_dumps(): # Test serializing an RPC request: data = f(params, 'the_method') (p, m) = loads(data) - assert_equal(m, 'the_method') + assert_equal(m, u'the_method') assert type(p) is tuple assert rpc.xml_unwrap(p) == params @@ -159,7 +159,7 @@ def test_xml_loads(): # Test un-serializing an RPC request: data = dumps(wrapped, 'the_method', allow_none=True) (p, m) = f(data) - assert_equal(m, 'the_method') + assert_equal(m, u'the_method') assert_equal(p, params) # Test un-serializing an RPC response: -- cgit