summaryrefslogtreecommitdiffstats
path: root/tests/test_xmlrpc/test_user_plugin.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-02-10 13:29:52 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-02-11 13:36:15 -0500
commit3ac3130fc9daf853368947b268d9af4b8a67d247 (patch)
tree404d1bdf4814e6e9b58394049d1c377c7a75f7af /tests/test_xmlrpc/test_user_plugin.py
parentb069af3bc9fe5ad91c01a0d7b4f7c9d833291e23 (diff)
downloadfreeipa-3ac3130fc9daf853368947b268d9af4b8a67d247.tar.gz
freeipa-3ac3130fc9daf853368947b268d9af4b8a67d247.tar.xz
freeipa-3ac3130fc9daf853368947b268d9af4b8a67d247.zip
Convert json strings to unicode when they are unmarshalled.
This patch removes some individual work-arounds of converting strings to unicode, they only masked the problem. String values are not passed to the validator or normalizers so things like adding the realm automatically to services weren't happening. ticket 941
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 ad5d21423..d8d95b9fe 100644
--- a/tests/test_xmlrpc/test_user_plugin.py
+++ b/tests/test_xmlrpc/test_user_plugin.py
@@ -510,8 +510,8 @@ class test_user(Declarative):
desc='Create %r with a full address' % user1,
command=(
'user_add', [user1], dict(givenname=u'Test', sn=u'User1',
- street='123 Maple Rd', locality='Anytown', st='MD',
- telephonenumber='410-555-1212',)
+ street=u'123 Maple Rd', locality=u'Anytown', st=u'MD',
+ telephonenumber=u'410-555-1212',)
),
expected=dict(
value=user1,