summaryrefslogtreecommitdiff
path: root/repoze/bfg/tests/test_zcml.py
diff options
context:
space:
mode:
Diffstat (limited to 'repoze/bfg/tests/test_zcml.py')
-rw-r--r--repoze/bfg/tests/test_zcml.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/repoze/bfg/tests/test_zcml.py b/repoze/bfg/tests/test_zcml.py
index 148b8cac6..f3e0ed80f 100644
--- a/repoze/bfg/tests/test_zcml.py
+++ b/repoze/bfg/tests/test_zcml.py
@@ -167,7 +167,7 @@ class TestSystemViewHandler(unittest.TestCase):
def test_no_view_no_renderer(self):
handler = self._makeOne(IDummy)
- from zope.configuration.exceptions import ConfigurationError
+ from repoze.bfg.exceptions import ConfigurationError
context = DummyContext()
handler(context)
actions = context.actions
@@ -358,7 +358,7 @@ class TestAuthTktAuthenticationPolicyDirective(unittest.TestCase):
self.assertEqual(policy.callback, callback)
def test_it_configerror(self):
- from zope.configuration.exceptions import ConfigurationError
+ from repoze.bfg.exceptions import ConfigurationError
context = DummyContext()
def callback(identity, request):
""" """