summaryrefslogtreecommitdiff
path: root/tests.py
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2015-05-07 18:12:48 +0200
committerStefan Kögl <stefan@skoegl.net>2015-05-07 18:12:48 +0200
commit23f9b1a34ba50687e0e5afbcd9f26817457d5a63 (patch)
tree9e8394e59170ee69e42bbbaf8a259c256fc44eb4 /tests.py
parent348ec1d9edf543f9c6cd61b780bb6ae7c2200bf5 (diff)
downloadpython-json-patch-23f9b1a34ba50687e0e5afbcd9f26817457d5a63.tar.gz
Fix tests for Python 3.2v1.19v1.10
Diffstat (limited to 'tests.py')
-rwxr-xr-xtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests.py b/tests.py
index 071aee0..5cbff33 100755
--- a/tests.py
+++ b/tests.py
@@ -354,7 +354,7 @@ class MakePatchTestCase(unittest.TestCase):
def test_make_patch_unicode(self):
""" Test if unicode keys and values are handled correctly """
src = {}
- dst = {u'\xee': u'\xee'}
+ dst = {'\xee': '\xee'}
patch = jsonpatch.make_patch(src, dst)
res = patch.apply(src)
self.assertEqual(res, dst)