summaryrefslogtreecommitdiff
path: root/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests.py')
-rwxr-xr-xtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests.py b/tests.py
index 614d844..548d28b 100755
--- a/tests.py
+++ b/tests.py
@@ -366,7 +366,7 @@ class MakePatchTestCase(unittest.TestCase):
src = [8, 7, 2, 1, 0, 9, 4, 3, 5, 6]
dest = [7, 2, 1, 0, 9, 4, 3, 6, 5, 8]
- patch = jsonpatch.make_patch(src, dest)
+ jsonpatch.make_patch(src, dest)
def test_issue76(self):
""" Make sure op:remove does not include a 'value' field """