summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests.py4
1 files changed, 3 insertions, 1 deletions
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)