[CMF-checkins] CVS: Products/CMFDefault/tests -
test_Favorite.py:1.6.32.2
Sidnei da Silva
sidnei at awkly.org
Wed Mar 16 12:58:25 EST 2005
Update of /cvs-repository/Products/CMFDefault/tests
In directory cvs.zope.org:/tmp/cvs-serv4965/CMFDefault/tests
Modified Files:
Tag: CMF-1_4-branch
test_Favorite.py
Log Message:
- Get rid of apply
- Behave accordingly with Zope 2.8
=== Products/CMFDefault/tests/test_Favorite.py 1.6.32.1 => 1.6.32.2 ===
--- Products/CMFDefault/tests/test_Favorite.py:1.6.32.1 Thu Apr 22 13:47:55 2004
+++ Products/CMFDefault/tests/test_Favorite.py Wed Mar 16 12:57:54 2005
@@ -32,7 +32,7 @@
def _makeOne( self, *args, **kw ):
- f = apply( Favorite, args, kw )
+ f = Favorite(*args, **kw)
return f.__of__( self.site )
def test_Empty( self ):
More information about the CMF-checkins
mailing list