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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/repoze/bfg/tests/test_zcml.py b/repoze/bfg/tests/test_zcml.py
index 1d7f42098..a59f88ae1 100644
--- a/repoze/bfg/tests/test_zcml.py
+++ b/repoze/bfg/tests/test_zcml.py
@@ -492,7 +492,7 @@ class TestBFGViewFunctionGrokker(unittest.TestCase):
actions = context.actions
self.assertEqual(len(actions), 0)
-class TestZCMLGrokFunction(unittest.TestCase):
+class TestZCMLScanFunction(unittest.TestCase):
def setUp(self):
cleanUp()
@@ -500,8 +500,8 @@ class TestZCMLGrokFunction(unittest.TestCase):
cleanUp()
def _callFUT(self, context, package, martian):
- from repoze.bfg.zcml import grok
- return grok(context, package, martian)
+ from repoze.bfg.zcml import scan
+ return scan(context, package, martian)
def test_it(self):
martian = DummyMartianModule()