summaryrefslogtreecommitdiff
path: root/repoze/bfg/tests/test_zcml.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-23 11:24:19 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-23 11:24:19 +0000
commit5453b7bc96005c7607338c24e9ccf858f7cfe153 (patch)
tree36892eef44208cbf494f3d2857f2d7f219f48bd6 /repoze/bfg/tests/test_zcml.py
parent9ef3b3ec29e3f02e901b41ba04eceb2af86be461 (diff)
downloadpyramid-5453b7bc96005c7607338c24e9ccf858f7cfe153.tar.gz
pyramid-5453b7bc96005c7607338c24e9ccf858f7cfe153.tar.bz2
pyramid-5453b7bc96005c7607338c24e9ccf858f7cfe153.zip
- The ``repoze.bfg.interfaces.ITemplateRendererFactory`` interface was
removed; it has become unused. - Change imperative API.
Diffstat (limited to 'repoze/bfg/tests/test_zcml.py')
-rw-r--r--repoze/bfg/tests/test_zcml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/repoze/bfg/tests/test_zcml.py b/repoze/bfg/tests/test_zcml.py
index ec58cc193..b9e70c0bd 100644
--- a/repoze/bfg/tests/test_zcml.py
+++ b/repoze/bfg/tests/test_zcml.py
@@ -543,7 +543,7 @@ class TestResourceDirective(unittest.TestCase):
self.assertEqual(len(actions), 1)
action = actions[0]
self.assertEqual(action['callable'].im_func,
- Configurator.resource.im_func)
+ Configurator.override_resource.im_func)
self.assertEqual(action['discriminator'], None)
self.assertEqual(action['args'], ('a', 'b', None))