[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Annotation/tests - testAttributeAnnotations.py:1.3

Jeremy Hylton jeremy@zope.com
Wed, 17 Jul 2002 12:54:46 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Annotation/tests
In directory cvs.zope.org:/tmp/cvs-serv5906/lib/python/Zope/App/OFS/Annotation/tests

Modified Files:
	testAttributeAnnotations.py 
Log Message:
Simplify test_suite() implementations when there is only one class.


=== Zope3/lib/python/Zope/App/OFS/Annotation/tests/testAttributeAnnotations.py 1.2 => 1.3 ===
 
 
 def test_suite():
-    return TestSuite((
-        makeSuite(Test),
-        ))
+    return makeSuite(Test)
 
 if __name__=='__main__':
     main(defaultTest='test_suite')