Skip to content

Commit

Permalink
Fix: python 3.2 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhadenough committed Mar 8, 2017
1 parent d1f317a commit 05d9ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests.py
Expand Up @@ -433,7 +433,7 @@ def test_success_if_correct_patch_appied(self):
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)

Expand Down

0 comments on commit 05d9ace

Please sign in to comment.