diff options
author | Jan Cholasta <jcholast@redhat.com> | 2015-09-11 13:43:28 +0200 |
---|---|---|
committer | Jan Cholasta <jcholast@redhat.com> | 2015-09-17 11:08:43 +0200 |
commit | 23507e6124041ed17f39db211e802495e37520e7 (patch) | |
tree | 8cf010848183a977fde0d5cdcd653556d215cd62 /ipatests/test_ipaserver | |
parent | 1550b5ab50966387bac19f46b34a2107010d08d4 (diff) | |
download | freeipa-23507e6124041ed17f39db211e802495e37520e7.tar.gz freeipa-23507e6124041ed17f39db211e802495e37520e7.tar.xz freeipa-23507e6124041ed17f39db211e802495e37520e7.zip |
Alias "unicode" to "str" under Python 3
The six way of doing this is to replace all occurences of "unicode"
with "six.text_type". However, "unicode" is non-ambiguous and
(arguably) easier to read. Also, using it makes the patches smaller,
which should help with backporting.
Reviewed-By: Petr Viktorin <pviktori@redhat.com>
Diffstat (limited to 'ipatests/test_ipaserver')
-rwxr-xr-x | ipatests/test_ipaserver/test_install/test_adtrustinstance.py | 5 | ||||
-rw-r--r-- | ipatests/test_ipaserver/test_ldap.py | 4 | ||||
-rw-r--r-- | ipatests/test_ipaserver/test_rpcserver.py | 5 |
3 files changed, 14 insertions, 0 deletions
diff --git a/ipatests/test_ipaserver/test_install/test_adtrustinstance.py b/ipatests/test_ipaserver/test_install/test_adtrustinstance.py index 9a62f87ce..75e53f35e 100755 --- a/ipatests/test_ipaserver/test_install/test_adtrustinstance.py +++ b/ipatests/test_ipaserver/test_install/test_adtrustinstance.py @@ -21,10 +21,15 @@ Test `adtrustinstance` """ import os + +import six import nose from ipaserver.install import adtrustinstance +if six.PY3: + unicode = str + class test_adtrustinstance: """ Test `adtrustinstance`. diff --git a/ipatests/test_ipaserver/test_ldap.py b/ipatests/test_ipaserver/test_ldap.py index f50c19a92..c3a9717c5 100644 --- a/ipatests/test_ipaserver/test_ldap.py +++ b/ipatests/test_ipaserver/test_ldap.py @@ -32,6 +32,7 @@ import pytest import nose from nose.tools import assert_raises # pylint: disable=E0611 import nss.nss as nss +import six from ipaserver.plugins.ldap2 import ldap2 from ipalib.plugins.service import service, service_show @@ -41,6 +42,9 @@ from ipapython import ipautil from ipaplatform.paths import paths from ipapython.dn import DN +if six.PY3: + unicode = str + class test_ldap(object): """ Test various LDAP client bind methods. diff --git a/ipatests/test_ipaserver/test_rpcserver.py b/ipatests/test_ipaserver/test_rpcserver.py index c77c2d97c..95980eb05 100644 --- a/ipatests/test_ipaserver/test_rpcserver.py +++ b/ipatests/test_ipaserver/test_rpcserver.py @@ -23,11 +23,16 @@ Test the `ipaserver.rpc` module. import json +import six + from ipatests.util import create_test_api, assert_equal, raises, PluginTester from ipatests.data import unicode_str from ipalib import errors, Command from ipaserver import rpcserver +if six.PY3: + unicode = str + class StartResponse(object): def __init__(self): |