summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2014-02-08 03:09:48 -0400
committerJosé Padilla <jpadilla@webapplicate.com>2014-02-08 03:09:48 -0400
commite0128c0a2976229072f6dbaa89bce4544a989fc9 (patch)
tree3726695abf99ccaf026ba6f1a3591f6ed5831293
parentd98881d40f4fd71985eb8d5e7bf456167653ce5e (diff)
downloadpyjwt-e0128c0a2976229072f6dbaa89bce4544a989fc9.tar.gz
Try to fix failing test in 3.2
-rw-r--r--tests/test_jwt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_jwt.py b/tests/test_jwt.py
index c8aed77..0ee5422 100644
--- a/tests/test_jwt.py
+++ b/tests/test_jwt.py
@@ -118,7 +118,7 @@ class TestJWT(unittest.TestCase):
"secret", "HS1024")
def test_unicode_secret(self):
- secret = u'\xc2'
+ secret = '\xc2'
jwt_message = jwt.encode(self.payload, secret)
decoded_payload = jwt.decode(jwt_message, secret)