[Zope-Checkins] CVS: Zope3/lib/python/Zope/Exceptions/tests - testExceptionFormatter.py:1.5

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


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

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


=== Zope3/lib/python/Zope/Exceptions/tests/testExceptionFormatter.py 1.4 => 1.5 ===
 
 
 def test_suite():
-    return TestSuite((
-        makeSuite(Test),
-        ))
+    return makeSuite(Test)
 
 if __name__=='__main__':
     main(defaultTest='test_suite')