diff options
author | kostya <suffering.death@gmail.com> | 2017-03-08 13:30:40 +0200 |
---|---|---|
committer | kostya <suffering.death@gmail.com> | 2017-03-08 13:30:40 +0200 |
commit | 05d9aceda8d0269c27d869f13d8ba0c7ca88104e (patch) | |
tree | 00323b41fe4f83bb463138c72d9827e96c5034dd /tests.py | |
parent | d1f317a2b796175154ca5e21c7b32eab1c5800fe (diff) | |
download | python-json-patch-05d9aceda8d0269c27d869f13d8ba0c7ca88104e.tar.gz |
Fix: python 3.2 tests
Diffstat (limited to 'tests.py')
-rwxr-xr-x | tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -433,7 +433,7 @@ class OptimizationTests(unittest.TestCase): def test_success_if_correct_expected_patch_appied(self): src = [{"a": 1, "b": 2}] dst = [{"b": 2, "c": 2}] - exp = [{u'path': u'/0', u'value': {u'c': 2, u'b': 2}, u'op': u'replace'}] + exp = [{'path': '/0', 'value': {'c': 2, 'b': 2}, 'op': 'replace'}] patch = jsonpatch.make_patch(src, dst) self.assertEqual(patch.patch, exp) |