Skip to content

Commit 23f9b1a

Browse files
committed
Fix tests for Python 3.2
1 parent 348ec1d commit 23f9b1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def test_root_list(self):
354354
def test_make_patch_unicode(self):
355355
""" Test if unicode keys and values are handled correctly """
356356
src = {}
357-
dst = {u'\xee': u'\xee'}
357+
dst = {'\xee': '\xee'}
358358
patch = jsonpatch.make_patch(src, dst)
359359
res = patch.apply(src)
360360
self.assertEqual(res, dst)

0 commit comments

Comments
 (0)