diff options
author | Hugo <hugovk@users.noreply.github.com> | 2018-01-16 14:24:29 +0200 |
---|---|---|
committer | Hugo <hugovk@users.noreply.github.com> | 2018-01-16 14:24:29 +0200 |
commit | d5a7aed0debac7f08265b0f1bf745bfaadc6e719 (patch) | |
tree | f041e8a5512eda81bbc631fb9a8d629049cf7efe /tests.py | |
parent | 71bdeed8b49390ff14fe8f0434fc8a1038d89128 (diff) | |
download | python-json-patch-d5a7aed0debac7f08265b0f1bf745bfaadc6e719.tar.gz |
Remove ununsed imports and variables
Diffstat (limited to 'tests.py')
-rwxr-xr-x | tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 """ |