diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-19 14:24:45 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-19 14:24:45 -0700 |
commit | 859822ff05c0c19cc16965918ef1d76eb8e531cb (patch) | |
tree | 0daa391638fbb2ddaf2d0ea439fa3c44f3172b66 /tests/test_stanza_xep_0009.py | |
parent | 3acc7d0914eb1ad883caf6a39685a807a17ba75c (diff) | |
download | slixmpp-859822ff05c0c19cc16965918ef1d76eb8e531cb.tar.gz slixmpp-859822ff05c0c19cc16965918ef1d76eb8e531cb.tar.bz2 slixmpp-859822ff05c0c19cc16965918ef1d76eb8e531cb.tar.xz slixmpp-859822ff05c0c19cc16965918ef1d76eb8e531cb.zip |
Fix unicode issues in test cases for Py3+ introduced by issue #150.
Diffstat (limited to 'tests/test_stanza_xep_0009.py')
-rw-r--r-- | tests/test_stanza_xep_0009.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/test_stanza_xep_0009.py b/tests/test_stanza_xep_0009.py index 724ebb95..fa1ed19b 100644 --- a/tests/test_stanza_xep_0009.py +++ b/tests/test_stanza_xep_0009.py @@ -8,7 +8,10 @@ See the file LICENSE for copying permission. """ +from __future__ import unicode_literals + import base64 +import sys from sleekxmpp.plugins.xep_0009.stanza.RPC import RPCQuery, MethodCall, \ MethodResponse @@ -21,6 +24,9 @@ from sleekxmpp.xmlstream.tostring import tostring import unittest +if sys.version_info > (3, 0): + unicode = str + class TestJabberRPC(SleekTest): @@ -117,7 +123,7 @@ class TestJabberRPC(SleekTest): "XML to string conversion") def testConvertUnicodeString(self): - params = [u"おはよう"] + params = ["おはよう"] params_xml = py2xml(*params) expected_xml = self.parse_xml(""" <params xmlns="jabber:iq:rpc"> |