We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 348ec1d commit 23f9b1aCopy full SHA for 23f9b1a
tests.py
@@ -354,7 +354,7 @@ def test_root_list(self):
354
def test_make_patch_unicode(self):
355
""" Test if unicode keys and values are handled correctly """
356
src = {}
357
- dst = {u'\xee': u'\xee'}
+ dst = {'\xee': '\xee'}
358
patch = jsonpatch.make_patch(src, dst)
359
res = patch.apply(src)
360
self.assertEqual(res, dst)
0 commit comments