[Zope-Checkins] CVS: Zope3/lib/python/Interface/tests - testDocument.py:1.6
Jeremy Hylton
jeremy@zope.com
Wed, 17 Jul 2002 12:54:45 -0400
Update of /cvs-repository/Zope3/lib/python/Interface/tests
In directory cvs.zope.org:/tmp/cvs-serv5906/lib/python/Interface/tests
Modified Files:
testDocument.py
Log Message:
Simplify test_suite() implementations when there is only one class.
=== Zope3/lib/python/Interface/tests/testDocument.py 1.5 => 1.6 ===
def test_suite():
- return TestSuite((
- makeSuite(Test),
- ))
+ return makeSuite(Test)
class _I1(Interface):
def f11(): pass