From b5b68df09212b9c3285d464cf188b1ea486bb0a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Thu, 7 May 2015 17:48:58 +0200 Subject: Fix Tests for Python 3.2 --- tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests.py b/tests.py index e30f61e..cf5c61a 100755 --- a/tests.py +++ b/tests.py @@ -1,6 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import unicode_literals + import doctest import unittest import sys @@ -61,7 +63,7 @@ class SpecificationTests(unittest.TestCase): "/k\"l", "/ ", "/m~0n", - u'/\xee', + '/\xee', ] for path in paths: ptr = JsonPointer(path) -- cgit v1.2.1