From 58afb33d70dece410b998a9c064eba42e3f843d7 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 18 Jan 2009 05:49:41 +0000 Subject: grok -> scan to prevent confusion. --- repoze/bfg/tests/test_zcml.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'repoze/bfg/tests/test_zcml.py') 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() -- cgit v1.2.3