diff options
| author | Stefan Kögl <stefan@skoegl.net> | 2015-05-07 18:12:48 +0200 |
|---|---|---|
| committer | Stefan Kögl <stefan@skoegl.net> | 2015-05-07 18:12:48 +0200 |
| commit | 23f9b1a34ba50687e0e5afbcd9f26817457d5a63 (patch) | |
| tree | 9e8394e59170ee69e42bbbaf8a259c256fc44eb4 | |
| parent | 348ec1d9edf543f9c6cd61b780bb6ae7c2200bf5 (diff) | |
| download | python-json-patch-1.19.tar.gz | |
| -rwxr-xr-x | tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
