summaryrefslogtreecommitdiff
path: root/tests.py
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2015-05-07 17:44:30 +0200
committerStefan Kögl <stefan@skoegl.net>2015-05-07 17:44:30 +0200
commit56a06e5a9bbdc2a5ba6be2dab2e0e05767599e66 (patch)
treedf3221acdd320424cb5d91ac6fcd75afa87eb863 /tests.py
parentdb861fb00eed47462176280fea0525b96cce31c3 (diff)
downloadpython-json-pointer-56a06e5a9bbdc2a5ba6be2dab2e0e05767599e66.tar.gz
Fix UnicodeEncodeError with non-ASCII paths, fixes #18
Diffstat (limited to 'tests.py')
-rwxr-xr-xtests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests.py b/tests.py
index 44447da..e30f61e 100755
--- a/tests.py
+++ b/tests.py
@@ -61,6 +61,7 @@ class SpecificationTests(unittest.TestCase):
"/k\"l",
"/ ",
"/m~0n",
+ u'/\xee',
]
for path in paths:
ptr = JsonPointer(path)