[Zope3-checkins] CVS: Zope3/src/zope/app/browser/tests -
test_absoluteurl.py:1.15
Jim Fulton
jim at zope.com
Thu Sep 4 11:22:22 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/browser/tests
In directory cvs.zope.org:/tmp/cvs-serv32334/src/zope/app/browser/tests
Modified Files:
test_absoluteurl.py
Log Message:
Removed some no-longer-needed 'side_effect_names' arguments to context
wrappers.
=== Zope3/src/zope/app/browser/tests/test_absoluteurl.py 1.14 => 1.15 ===
--- Zope3/src/zope/app/browser/tests/test_absoluteurl.py:1.14 Fri Aug 8 14:07:09 2003
+++ Zope3/src/zope/app/browser/tests/test_absoluteurl.py Thu Sep 4 10:22:20 2003
@@ -111,10 +111,7 @@
vh_root = TrivialContent()
request._vh_root = ContextWrapper(vh_root, Root(), name='a')
- content = ContextWrapper(vh_root, Root(),
- name='a',
- side_effect_names=("++vh++abc", ),
- )
+ content = ContextWrapper(vh_root, Root(), name='a')
content = ContextWrapper(TrivialContent(), content, name='b')
content = ContextWrapper(TrivialContent(), content, name='c')
view = getView(content, 'absolute_url', request)
@@ -133,8 +130,7 @@
root = Root()
request._vh_root = ContextWrapper(root, root, name='')
- content = ContextWrapper(root, None,
- side_effect_name="++vh++abc")
+ content = ContextWrapper(root, None)
content = ContextWrapper(TrivialContent(), content, name='a')
content = ContextWrapper(TrivialContent(), content, name='b')
content = ContextWrapper(TrivialContent(), content, name='c')
More information about the Zope3-Checkins
mailing list