Fix tests for Python 3.2

This commit is contained in:
Stefan Kögl 2015-05-07 18:12:48 +02:00
parent 348ec1d9ed
commit 23f9b1a34b
1 changed files with 1 additions and 1 deletions

View File

@ -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)