diff options
author | Stefan Kögl <stefan@skoegl.net> | 2015-05-07 17:48:58 +0200 |
---|---|---|
committer | Stefan Kögl <stefan@skoegl.net> | 2015-05-07 17:48:58 +0200 |
commit | b5b68df09212b9c3285d464cf188b1ea486bb0a7 (patch) | |
tree | 794b04af6abb1625daa4a860922624eae54c1a96 /tests.py | |
parent | 56a06e5a9bbdc2a5ba6be2dab2e0e05767599e66 (diff) | |
download | python-json-pointer-b5b68df09212b9c3285d464cf188b1ea486bb0a7.tar.gz |
Fix Tests for Python 3.2
Diffstat (limited to 'tests.py')
-rwxr-xr-x | tests.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |