Skip to content

Commit 05d9ace

Browse files
committed
Fix: python 3.2 tests
1 parent d1f317a commit 05d9ace

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
@@ -433,7 +433,7 @@ def test_success_if_correct_patch_appied(self):
433433
def test_success_if_correct_expected_patch_appied(self):
434434
src = [{"a": 1, "b": 2}]
435435
dst = [{"b": 2, "c": 2}]
436-
exp = [{u'path': u'/0', u'value': {u'c': 2, u'b': 2}, u'op': u'replace'}]
436+
exp = [{'path': '/0', 'value': {'c': 2, 'b': 2}, 'op': 'replace'}]
437437
patch = jsonpatch.make_patch(src, dst)
438438
self.assertEqual(patch.patch, exp)
439439

0 commit comments

Comments
 (0)