diff options
author | Stefan Kögl <stefan@skoegl.net> | 2016-02-13 15:50:48 +0100 |
---|---|---|
committer | Stefan Kögl <stefan@skoegl.net> | 2016-02-13 15:50:48 +0100 |
commit | 9ce8487179bc001c4be10a54dadc04ce66be5c68 (patch) | |
tree | ce2d0e6694f77b0a43d1e24ed437c956aedf2a5f /tests.py | |
parent | cf0da04dca7a5fcb3f20ab6a4eb78faf9dac8ce5 (diff) | |
download | python-json-patch-9ce8487179bc001c4be10a54dadc04ce66be5c68.tar.gz |
Remove import of ``pudb``
Diffstat (limited to 'tests.py')
-rwxr-xr-x | tests.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -370,8 +370,6 @@ class MakePatchTestCase(unittest.TestCase): """ Test whether a minimal patch is created, see #36 """ src = [{"foo": 1, "bar": 2}] dst = [{"foo": 2, "bar": 2}] - import pudb - #pudb.set_trace() patch = jsonpatch.make_patch(src, dst) exp = [ |