summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2011-05-30 01:57:04 -0500
committerMichael Merickel <michael@merickel.org>2011-05-30 01:57:04 -0500
commitb2eb18ff11a691ad9b5909293d58b014fcb5ef43 (patch)
treea159c8e44c8dbcf66a8bd7350baf83f6fed887e1
parentda171de0ff280b5a78c8099c48ad731f0380ed3e (diff)
downloadpyramid-b2eb18ff11a691ad9b5909293d58b014fcb5ef43.tar.gz
pyramid-b2eb18ff11a691ad9b5909293d58b014fcb5ef43.tar.bz2
pyramid-b2eb18ff11a691ad9b5909293d58b014fcb5ef43.zip
Removed a pdb trace. Oops!
-rw-r--r--pyramid/tests/test_urldispatch.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pyramid/tests/test_urldispatch.py b/pyramid/tests/test_urldispatch.py
index 3e861eba9..ec45cb71e 100644
--- a/pyramid/tests/test_urldispatch.py
+++ b/pyramid/tests/test_urldispatch.py
@@ -368,7 +368,6 @@ class TestCompileRouteMatchFunctional(unittest.TestCase):
self.matches('/foo/:id.html', '/foo/bar.html', {'id':'bar'})
self.matches('/{num:[0-9]+}/*traverse', '/555/abc/def',
{'num':'555', 'traverse':('abc', 'def')})
- import pdb; pdb.set_trace()
self.matches('/{num:[0-9]*}/*traverse', '/555/abc/def',
{'num':'555', 'traverse':('abc', 'def')})