summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2016-02-13 15:50:48 +0100
committerStefan Kögl <stefan@skoegl.net>2016-02-13 15:50:48 +0100
commit9ce8487179bc001c4be10a54dadc04ce66be5c68 (patch)
treece2d0e6694f77b0a43d1e24ed437c956aedf2a5f
parentcf0da04dca7a5fcb3f20ab6a4eb78faf9dac8ce5 (diff)
downloadpython-json-patch-9ce8487179bc001c4be10a54dadc04ce66be5c68.tar.gz
Remove import of ``pudb``
-rwxr-xr-xtests.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests.py b/tests.py
index b73b38e..8b0b52c 100755
--- a/tests.py
+++ b/tests.py
@@ -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 = [