summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)