diff options
| author | Chris McDonough <chrism@plope.com> | 2011-09-24 12:28:40 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-09-24 12:28:40 -0400 |
| commit | ff6c115215f147201db3e8dc33c03a9331a3c82b (patch) | |
| tree | 76d4aeafda46a4b160c8ba99796f4920fb1ca012 | |
| parent | 10d2f293f250faf93844a8446c8fcfc5e1c90580 (diff) | |
| download | pyramid-ff6c115215f147201db3e8dc33c03a9331a3c82b.tar.gz pyramid-ff6c115215f147201db3e8dc33c03a9331a3c82b.tar.bz2 pyramid-ff6c115215f147201db3e8dc33c03a9331a3c82b.zip | |
fix mako tests on py3
| -rw-r--r-- | pyramid/tests/test_router.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyramid/tests/test_router.py b/pyramid/tests/test_router.py index 7ba4d5722..ab4fc116b 100644 --- a/pyramid/tests/test_router.py +++ b/pyramid/tests/test_router.py @@ -653,6 +653,7 @@ class TestRouter(unittest.TestCase): self.assertEqual(request.matched_route.name, 'foo') self.assertEqual(len(logger.messages), 1) + import pdb; pdb.set_trace() self.assertTrue( logger.messages[0].startswith( "route matched for url http://localhost:8080" |
