summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/tests/test_router.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyramid/tests/test_router.py b/pyramid/tests/test_router.py
index bd6210f75..ffda14738 100644
--- a/pyramid/tests/test_router.py
+++ b/pyramid/tests/test_router.py
@@ -115,6 +115,8 @@ class TestRouter(unittest.TestCase):
def test_ctor_registry_has_no_settings(self):
self.registry.settings = None
router = self._makeOne()
+ self.assertEqual(router.debug_notfound, False)
+ self.assertEqual(router.debug_routematch, False)
self.failIf('debug_notfound' in router.__dict__)
self.failIf('debug_routematch' in router.__dict__)