diff options
Diffstat (limited to 'repoze/bfg/tests/test_zcml.py')
| -rw-r--r-- | repoze/bfg/tests/test_zcml.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/repoze/bfg/tests/test_zcml.py b/repoze/bfg/tests/test_zcml.py index 89ad71cac..35584f301 100644 --- a/repoze/bfg/tests/test_zcml.py +++ b/repoze/bfg/tests/test_zcml.py @@ -573,7 +573,7 @@ class TestViewDirective(unittest.TestCase): from zope.interface import Interface from repoze.bfg.interfaces import IRequest from repoze.bfg.interfaces import IView - from repoze.bfg.view import NotFound + from repoze.bfg.exceptions import NotFound context = DummyContext() class IFoo(Interface): pass @@ -626,7 +626,7 @@ class TestViewDirective(unittest.TestCase): from zope.interface import Interface from repoze.bfg.interfaces import IRequest from repoze.bfg.interfaces import IView - from repoze.bfg.view import NotFound + from repoze.bfg.exceptions import NotFound context = DummyContext() class IFoo(Interface): pass @@ -679,7 +679,7 @@ class TestViewDirective(unittest.TestCase): from zope.interface import Interface from repoze.bfg.interfaces import IRequest from repoze.bfg.interfaces import IView - from repoze.bfg.view import NotFound + from repoze.bfg.exceptions import NotFound context = DummyContext() class IFoo(Interface): pass @@ -735,7 +735,7 @@ class TestViewDirective(unittest.TestCase): from zope.interface import Interface from repoze.bfg.interfaces import IRequest from repoze.bfg.interfaces import IView - from repoze.bfg.view import NotFound + from repoze.bfg.exceptions import NotFound context = DummyContext() class IFoo(Interface): pass |
