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 d1f317a commit 05d9aceCopy full SHA for 05d9ace
tests.py
@@ -433,7 +433,7 @@ def test_success_if_correct_patch_appied(self):
433
def test_success_if_correct_expected_patch_appied(self):
434
src = [{"a": 1, "b": 2}]
435
dst = [{"b": 2, "c": 2}]
436
- 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'}]
437
patch = jsonpatch.make_patch(src, dst)
438
self.assertEqual(patch.patch, exp)
439
0 commit comments