[Zope3-checkins] CVS: Zope3/src/zope/proxy/context/tests - test_decorator.py:1.10

Steve Alexander steve@cat-box.net
Tue, 13 May 2003 07:33:19 -0400


Update of /cvs-repository/Zope3/src/zope/proxy/context/tests
In directory cvs.zope.org:/tmp/cvs-serv32529/src/zope/proxy/context/tests

Modified Files:
	test_decorator.py 
Log Message:
Fixed test failure on Python 2.3, due to the differences in whether the
default constructor for a new-style class takes arguments or not.


=== Zope3/src/zope/proxy/context/tests/test_decorator.py 1.9 => 1.10 ===
--- Zope3/src/zope/proxy/context/tests/test_decorator.py:1.9	Mon May 12 12:17:40 2003
+++ Zope3/src/zope/proxy/context/tests/test_decorator.py	Tue May 13 07:33:18 2003
@@ -125,6 +125,8 @@
         obj = SomeObject()
 
         class MixinFactory(object):
+            def __init__(self, inner, outer):
+                pass
             def foo(self):
                 pass
             def bar(self):